如何关闭该wordpress配置中的所有电子邮件发送选项。我应该使用
wp-includes/class-phpmailer.php ? or where ?
if ($this->SingleTo === true && count($toArr) > 1) {
foreach ($toArr as $key => $val) {
$rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
// implement call back function if it exists
$isSent = ($rt == 1) ? 1 : 0;
$this->doCallback($isSent,$val,$this->cc,$this->bcc,$this->Subject,$body);
}
}
这会吗?
答案 0 :(得分:0)
将以下代码添加到wp-config.php,它将停止发送所有电子邮件
function wp_mail()
{
//silence is golden!!
}