Skip to content

Instantly share code, notes, and snippets.

@eder-dias
Created August 21, 2017 02:47
Show Gist options
  • Save eder-dias/bc1de5ce8d9b1536fdaf3a9c4d82664b to your computer and use it in GitHub Desktop.
Save eder-dias/bc1de5ce8d9b1536fdaf3a9c4d82664b to your computer and use it in GitHub Desktop.
Change Sender Name in Outgoing WordPress Email
// Function to change email address
function wpb_sender_email( $original_email_address ) {
return 'email@example.com';
}
// Function to change sender name
function wpb_sender_name( $original_email_from ) {
return 'YOUR NAME';
}
// Hooking up our functions to WordPress filters
add_filter( 'wp_mail_from', 'wpb_sender_email' );
add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment