Skip to content

Instantly share code, notes, and snippets.

@gabrielmerovingi
Created June 27, 2017 14:07
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 gabrielmerovingi/f910d31b45d97149473e769b51d0de4b to your computer and use it in GitHub Desktop.
Save gabrielmerovingi/f910d31b45d97149473e769b51d0de4b to your computer and use it in GitHub Desktop.
function enforce_dfds_email_from($old) {
return 'yourname@yourdomain.com';
}
add_filter( 'wp_mail_from', 'enforce_dfds_email_from' );
function enforce_dfds_email_from_name($old) {
return 'Your Name';
}
add_filter( 'wp_mail_from_name', 'enforce_dfds_email_from_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment