函数原型
fix_phpmailer_messageid( PHPMailer $phpmailer )
函数描述
Corrects From host on outgoing mail to match the site domain
是否弃用
未弃用
函数参数
-
$phpmailer
PHPMailer
Required - The PHPMailer instance (passed by reference).
函数返回值
无
函数位置
File: wp-includes/ms-functions.php.
函数源码
function fix_phpmailer_messageid( $phpmailer ) {
$phpmailer->Hostname = get_network()->domain;
}
源码链接
变更日志
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |

