Problem with Amazon SES
-
I am using this plugin for setup amazon SES smtp and i’m getting error like ‘SMTP Error: data not accepted.’ because of sender & from are not same because you use from name from phpmailer
`
$phpmailer->Sender = $phpmailer->From;
`
instend of that you should use below code
`
if (get_option(‘mail_set_return_path’)) {
$phpmailer->Sender = get_option( ‘mail_from’ );
$phpmailer->From = get_option( ‘mail_from’ );
$phpmailer->FromName = get_option( ‘mail_from_name’ );
}
`
- The topic ‘Problem with Amazon SES’ is closed to new replies.