Quantcast
Channel: WordPress.org Forums » [WP Mail SMTP by WPForms - The Most Popular SMTP and Email Log Plugin] Support
Viewing all articles
Browse latest Browse all 5161

dipesh.kakadiya on "[Plugin: WP Mail SMTP] Problem with Amazon SES"

$
0
0

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' );
}
`

https://wordpress.org/plugins/wp-mail-smtp/


Viewing all articles
Browse latest Browse all 5161

Trending Articles



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