SMTP错误Wordpress 4.9.1

时间:2017-12-06 08:40:42

标签: php wordpress smtp phpmailer

我有2个网站Wordpress。

一个站点使用Wordpress 4.8.3,它可以通过SMTP发送邮件。

另一个站点使用Wordpress 4.9.1并发出一个SMTP错误,它无法通过STMP发送邮件。

我正在使用WP SMTP插件。

1 个答案:

答案 0 :(得分:0)

这是wordpress SMTP插件,用于发送没有本地smtp服务器的电子邮件https://wordpress.org/plugins/blastex 您可以使用html(最小Php版本5.1)从 wp_mail()函数发送:

< ?php
$to = 'hello@emal.com, hello@boom.com';
$subject 'Hello from email client';
$html = '<h1>Hello message from smtp! </h1> Message from wordpress plugin!';

// Install and activate plugin and send emails (1 - sent, 0- error)
$ok = wp_mail($to, $subject, $html);

// Show error
echo get_option('blastex_error');
?>

插件获取mx主机名,用于从dns服务器发送电子邮件。 你可以试试!