0

如何关闭该单词按配置中的所有电子邮件发送选项。我应该使用

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);
        }
      }  

这会吗?

4

1 回答 1

0

将以下代码添加到 wp-config.php,它将停止发送所有电子邮件

function wp_mail()
{
    //silence is golden!!
}
于 2012-12-22T08:17:05.247 回答