Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from BruceMcKinnon/functions.php
Created May 26, 2020 00:39
Show Gist options
  • Save dgoze/e7f5704dad6e1857263967910245b301 to your computer and use it in GitHub Desktop.
Save dgoze/e7f5704dad6e1857263967910245b301 to your computer and use it in GitHub Desktop.
Change Wordpress emails sender adddess and sender name
add_filter('wp_mail_from', 'kmow_mail_from_address');
function kmow_mail_from_address($email){
return '[email protected]';
}
add_filter('wp_mail_from_name', 'kmow_mail_from_name');
function kmow_mail_from_name($from_name){
return "KMOW Web Site";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment