May 31, 2020 3:39 pm
Hi!
Now in e-mail on subscription address has the form
no-reply@nameWWW.com
How i can change adress?
I wanna, for example, TEXT@nameWWW.com
thnks
2 Replies
Jun 01, 2020 11:05 am
Hi @alex-s,
This code should help you to solve the issue. Add the code in your current active theme's functions.php file:
add_filter('wp_mail_from', function ($email){
return 'no-reply@blogname.com';
});
Don't forget to change the red marked code (set the right email) before using.