annotate vendor/chi-teck/drupal-code-generator/templates/d7/hook/mail_alter.twig @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
rev   line source
Chris@0 1 /**
Chris@0 2 * Implements hook_mail_alter().
Chris@0 3 */
Chris@0 4 function {{ machine_name }}_mail_alter(&$message) {
Chris@0 5 if ($message['id'] == 'modulename_messagekey') {
Chris@0 6 if (!example_notifications_optin($message['to'], $message['id'])) {
Chris@0 7 // If the recipient has opted to not receive such messages, cancel
Chris@0 8 // sending.
Chris@0 9 $message['send'] = FALSE;
Chris@0 10 return;
Chris@0 11 }
Chris@0 12 $message['body'][] = "--\nMail sent out from " . variable_get('site_name', t('Drupal'));
Chris@0 13 }
Chris@0 14 }