Skip to content

Instantly share code, notes, and snippets.

@Steeru
Created June 4, 2018 08:45
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 Steeru/8f870de1d33948bda52296dbf62439d3 to your computer and use it in GitHub Desktop.
Save Steeru/8f870de1d33948bda52296dbf62439d3 to your computer and use it in GitHub Desktop.
// Function to change email address
function wpb_sender_email( $original_email_address ) {
return 'ADMIN EMAIL';
}
// Function to change sender name
function wpb_sender_name( $original_email_from ) {
return 'YOUR COMPANY 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