Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created June 24, 2017 10:43
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 lynt-smitka/da5106c0e3b38308c1a4102ba318ef72 to your computer and use it in GitHub Desktop.
Save lynt-smitka/da5106c0e3b38308c1a4102ba318ef72 to your computer and use it in GitHub Desktop.
Fix Sender for WordPress mail
add_action('phpmailer_init', 'lynt_customize_mail_headers');
function lynt_customize_mail_headers($phpmailer) {
$phpmailer->Sender = $phpmailer->From;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment