Skip to content

Instantly share code, notes, and snippets.

@donini
Last active September 3, 2019 02:47
Show Gist options
  • Save donini/6357f37b8cd8c0bcb2875fb2f528f332 to your computer and use it in GitHub Desktop.
Save donini/6357f37b8cd8c0bcb2875fb2f528f332 to your computer and use it in GitHub Desktop.
Change from name
<?php
/** notification mail email change.
**
** @param string $mail Custom e-mail address.
**/
add_filter('wp_mail_from','custom_email_from');
function custom_email_from($mail) {
$mail = '[YOURMAIL@YOURSITE.COM]';
return $mail;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment