Wordpress每隔7分钟将“发送状态通知失败”发送到我的收件箱

时间:2013-09-25 17:37:41

标签: wordpress spam

我们收到了来自wordpress@domain.com的垃圾邮件,请访问jaqqscigs@gmail.com。我尝试了MU插件(Wordpress and wamp sending "Delivery status notification Failure" to my inbox every 7 minutes),但我得到了一个解析错误。有没有办法只禁用从wordpress一起发送的邮件?我们更改了密码,禁用了密码等。

谢谢!

特拉维斯

1 个答案:

答案 0 :(得分: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