我可以停止从wordpress网站发送的所有电子邮件吗?在哪里这样做wp-includes / class-phpmailer.php?

时间:2012-12-22 05:23:47

标签: wordpress wordpress-plugin

如何关闭该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);
        }
      }  
这会吗?

1 个答案:

答案 0 :(得分:0)

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

function wp_mail()
{
    //silence is golden!!
}