wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



fix_phpmailer_messageid › WordPress Function

Depuis
Dépréciéen/a
fix_phpmailer_messageid ( $phpmailer )
Paramètres:
  • (PHPMailer) $phpmailer The PHPMailer instance (passed by reference).
    Requis: Oui
Défini(e) dans:
Codex:
Changelog:
  • MU

Corrects From host on outgoing mail to match the site domain.



Source

function fix_phpmailer_messageid( $phpmailer ) {
	$phpmailer->Hostname = get_network()->domain;
}