Quantcast
Channel: Active questions tagged email - Stack Overflow
Viewing all articles
Browse latest Browse all 29916

Drupal 8 Custom Module Stop Sending Emails Filter by Email Addresses

$
0
0

I am building a custom module using hook_mail_alter in Drupal 8 which stops the system from sending emails to a selected email address. My current module stops sending any emails for some reasons. I need help to figure out why.

<?php
use Drupal\Core\Mail\MailManagerInterface;

/**
* Implements hook_mail_alter
*/

function terminate_emails_mail_alter(&$message) {

    //filter by email address, which is not working
    if($message['to'] = 'example@gmail.com') {

    //stop sending emails
      $message['send'] = FALSE;    
    }
}

Viewing all articles
Browse latest Browse all 29916

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>