Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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.