Email notification ‘from’ address
-
Hi
A client of mine had their SMTP service temporarily blocked as a result of the notification emails sent by this plugin.
In /inc/Email_Notification.php it has:
$email_from = $from_name . ' <' . get_option( 'admin_email', $valid_emails[0] ) . '>';
So if the WordPress admin email is a Gmail address then the from address of the email notification will be from gmail.com which the website email server or connected SMTP server aren’t authorised to send from so DKIM fails as it’s basically spoofing the sending address.
By default WordPress sends emails from [email protected] rather than the admin email to avoid this type of issue.
- The topic ‘Email notification ‘from’ address’ is closed to new replies.