Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:56
Show Gist options
  • Select an option

  • Save tevashov/5172494 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172494 to your computer and use it in GitHub Desktop.
Change WordPress default FROM email address #WP
 function new_mail_from($old) {
return 'admin@yourdomain.com';
}
function new_mail_from_name($old) {
return 'Your Blog Name';
}
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment