Joshbaker
Forum Replies Created
-
Forum: Plugins
In reply to: [Privilege Menu] Salient theme incompatabilityOk, I have done that.
Great thanks for this,
Add that’s why your a programmer and I’m not. Attention to detail thanks so much for your help!
- This reply was modified 5 years, 4 months ago by Joshbaker.
Ok I used this filter but it didn’t seem to work:
function swp_reply_to($args) {
$args[‘headers’] = array(‘Reply-To: Name <[email protected]’);
return $args;
}
add_filter ( ‘wp_mail’, ‘swp_reply_to’);function wploop_email_content_type() {
return ‘text/html’;
}Any ideas?
I wonder is the issue that gmail or AOL are blocking the email as spam before it even hits the inbox?
Is the website domain and email domain the same address?
When you said “WP Mail SMTP v1.4.2 just gave up on sending emails.” Did it show up an error or did it just not reach your inbox?
Do use use the gmail smtp or other smtp?
Is this just an issue with gmail accounts?
I use gmail but use the option:
Other SMTPYou can then just put in the details
SMTP HOST: smtp.gmail.com
Encryption: SSL
SMTP port: 465
Auto SSL: on
Authentication: on
SMTP username: gmail emails address
SMTP password: gmail passwordI’m by no means an expert but does this work for you:
function wp_email_content_type() {
return ‘text/html’;
}add_filter( ‘wp_mail_content_type’, ‘wp_email_content_type’ );
You can then remove filter like this:
remove_filter( ‘wp_mail_content_type’,’ wp_email_content_type ‘ );