wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



fix_phpmailer_messageid › WordPress Function

Seit
Veraltetn/v
fix_phpmailer_messageid ( $phpmailer )
Parameter:
  • (PHPMailer) $phpmailer The PHPMailer instance (passed by reference).
    Erforderlich: Ja
Definiert in:
Codex:
Changelog:
  • MU

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



Quellcode

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