Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created February 9, 2016 18:29
Show Gist options
  • Save hsleonis/6ec46a84dbf76eba16f4 to your computer and use it in GitHub Desktop.
Save hsleonis/6ec46a84dbf76eba16f4 to your computer and use it in GitHub Desktop.
Change the Email Sender in WordPress
<?php
function ec_mail_name( $email ){
return 'Joe Doe'; // new email name from sender.
}
add_filter( 'wp_mail_from_name', 'ec_mail_name' );
function ec_mail_from ($email ){
return '[email protected]'; // new email address from sender.
}
add_filter( 'wp_mail_from', 'ec_mail_from' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment