sendgrid_integration-8.x-1.x-dev/sendgrid_integration.api.php
sendgrid_integration.api.php
<?php
/**
* @file
* Hooks provided by SendGrid Integration module.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* This hook is invoked after email has been sent.
*
* @param string $to
* Address of email recipient.
* @param array $unique_args
* Unique arguments used when email were sent, keyed by argument name.
* - id Message id.
* - uid User id.
* - module Module witch sent the message.
* @param array $response
* Response from the SendGrid API.
*/
function hook_sendgrid_integration_sent($to, $unique_args, $response) {
if ($unique_args['module'] == 'my_module' && $result_code = 200) {
\Drupal::logger('My Module')
->notice('My module has successfully sent email');
}
}
/**
* This hook is invoked before mail is sent, allowing modification of
* unique_args.
*
* @param array $unique_args
* Unique arguments.
*
* @param array $message
* The email message
*
* @return array
* Returned array will be used as unique arguments.
*/
function hook_sendgrid_integration_unique_args_alter($unique_args, $message) {
$unique_args['time'] = time();
$unique_args['subject'] = $message['params']['subject'];
return $unique_args;
}
/**
* This hook is invoked before mail is sent, allowing modification of
* categories.
*
* @param array $categories
* An array of categories for Sendgrid statistics.
*
* @return array
* Returned array will be used as categories.
*/
function hook_sendgrid_integration_categories_alter($message, $categories) {
$categories[] = 'from_' . $message['from'];
$categories[] = $message['language'];
return $categories;
}
/**
* @} End of "addtogroup hooks".
*/
