Feb 06, 2017 8:25 am
3 Replies
Feb 06, 2017 7:55 pm
This should be set from WordPress side. But unfortunately WordPress doesn't have such setting. You should put this code in active theme functions.php file. Just change the noreply@example.com and My Website Name values.
add_filter( 'wp_mail_from', function( $name ) {
return 'noreply@example.com';
});
add_filter( 'wp_mail_from_name', function( $name ) {
return 'My Website Name';
});
Feb 07, 2017 1:52 am
Thank you very much for your answer.
I'm going to try it
Feb 08, 2017 1:47 pm
it works!
thank you very much!!!!