Created
February 9, 2016 18:29
-
-
Save hsleonis/6ec46a84dbf76eba16f4 to your computer and use it in GitHub Desktop.
Change the Email Sender in WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function ec_mail_name( $email ){ | |
return 'Joe Doe'; // new email name from sender. | |
} | |
add_filter( 'wp_mail_from_name', 'ec_mail_name' ); | |
function ec_mail_from ($email ){ | |
return '[email protected]'; // new email address from sender. | |
} | |
add_filter( 'wp_mail_from', 'ec_mail_from' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment