Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created August 24, 2015 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/58f48d113657b90e989b to your computer and use it in GitHub Desktop.
Save JudeRosario/58f48d113657b90e989b to your computer and use it in GitHub Desktop.
Change WP From email
// Change default WP email sender
add_filter('wp_mail_from', 'new_mail_from');
function new_mail_from_name($old) {
return 'Site Administrator';
}
add_filter('wp_mail_from_name', 'new_mail_from_name');
function new_mail_from($old) {
return 'info@mydomain.com';
}
@JudeRosario
Copy link
Author

Just edit the Name and Email ID and then copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment