Skip to content

Instantly share code, notes, and snippets.

@jeweltheme
Forked from dannyockilson/gist:8438642
Last active August 29, 2015 14:19
Show Gist options
  • Save jeweltheme/620f4d3b9f23a47f49dd to your computer and use it in GitHub Desktop.
Save jeweltheme/620f4d3b9f23a47f49dd to your computer and use it in GitHub Desktop.
/* Set Default Mail From Name */
function custom_wp_mail_from_name( $original_email_from ){
return 'Danny Wilson';
}
add_filter( 'wp_mail_from_name', 'custom_wp_mail_from_name' );
/* Set Default Mail From email */
function custom_wp_mail_from( $original_email_address ){
return 'danny@iamdannywilson.com';
}
add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment