Skip to content

Instantly share code, notes, and snippets.

@dannyockilson
Created January 15, 2014 15:50
Show Gist options
  • Save dannyockilson/8438642 to your computer and use it in GitHub Desktop.
Save dannyockilson/8438642 to your computer and use it in GitHub Desktop.
Drop-in for custom wp-mail settings
/* 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