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 に答える