0

我们收到从 wordpress@domain.com 到 jaqqscigs@gmail.com 的垃圾邮件。我试过 MU 插件(Wordpress 和 wamp 每 7 分钟向我的收件箱发送“交付状态通知失败”),但我收到了一个解析错误。有什么方法可以禁用从 wordpress 发送的邮件?我们已更改密码,禁用密码等。

谢谢!

特拉维斯

4

1 回答 1

0

试试这个(未测试)。根据您的使用情况,您可能不想抛出 phpmailerException....

class fakemailer {
    public function Send() {
        throw new phpmailerException( 'Cancelling mail' );
    }
}

if ( ! class_exists( 'phpmailerException' ) ) :
class phpmailerException extends Exception {
    public function errorMessage() {
        $errorMsg = '<strong>' . $this->getMessage() . "</strong><br />\n";
        return $errorMsg;
    }
}

add_action( 'phpmailer_init', 'wpse_53612_fakemailer' );
function wpse_53612_fakemailer( $phpmailer ) {
    if ( ! /* condition */ ) 
        $phpmailer = new fakemailer();
}

https://wordpress.stackexchange.com/questions/53612/how-to-stop-the-wp-mail-function

于 2013-09-25T18:46:49.010 回答