Changing sender email and name from [Wordpress] to custom Follow up

Hello,

I encountered the same issue and I have download it the plugin, yet, I still do not know what is the approach to set up the smpt - i do not have any email set up instructions - for instance I need to do_not_reply@domain.com from “Company name” same with user registration or password reset etc – please share how to do this

Hi,

Please check this doc How to set up emails - HivePress Help Center

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.

Hi,

How can I change the Wordpress in emails that are received so it shows the Website name?
Also, every email sent is flagged as spam. How do I change that?

Thanks.

Hello,

Try this :

/* ##############
* Change outgoing email address params
*/
// Change default WP email sender
add_filter('wp_mail_from', 'doEmailFilter');
add_filter('wp_mail_from_name', 'doEmailNameFilter');

function doEmailFilter($email_address){
if($email_address === "wordpress@myawesomewebsite.fr")
    return 'whoever@myawesomewebsite.fr'; //change param here
else
    return $email_address;
}
function doEmailNameFilter($email_from){
if($email_from === "WordPress")
    return 'My Awesome Website Site Admin'; //whoever 
else
    return $email_from;
}

Regarding SPAM, make sure the sender belongs to the same domain @myawesomewebsite.fr rather than @yahoo.com.
Install WPMail SMTP, Check your DKIM and SPF params
Rather check all that with your hosting.

Hi,

Please check the solution in this topic.