glider111
Member
Posted 6 years ago #
I need help in changing the default FROM address when a person receives their email confirmation when I manually register a new user.
Right now the default FROM address is WORDPRESS@MyBlogDomain.com and I'd like to change it to anything that I want.
Changing the Admin's email address has no effect.
Any help would be appreciated.
It should be the one in admin -> Options -> General
dalewright
Member
Posted 6 years ago #
I need the same thing. It's not the admin->options->general email address...that's only for receiving not sending.
Dale
You might want to look at the wp_mail function in wp-includes/pluggable-functions.php to see how WordPress handles the From:.
********************
Welcome to the WordPress Support Forums!
Please help keep the Forums successful by reading:
Using the Support Forums
Also, remember the WordPress Codex and the FAQ pages.
And, thank you, for letting us know if this information proves useful (or not)!
********************
dalewright
Member
Posted 6 years ago #
It might be something that needs to be overriden in the php.ini file...the sendmail section perhaps? Should be able to force a smtp from address though. Thanks for the tip I'll look there.
Dale
glider111
Member
Posted 6 years ago #
MichaelH,
You were right! The wp_mail function in the pluggable-functions.php file is where this "From" is handled.
Thank you!!!