答案 0 :(得分:0)
Wordpress希望使用SMTP邮件服务器发送电子邮件。由于您没有,您可以使用Google的邮件服务器(have a look here on how to)。
答案 1 :(得分:0)
试试这个插件https://wordpress.org/plugins/blastex/ 并发送没有本地smtp服务器的电子邮件:)
< ?php
!!! Enable first in php.ini config file socket extension. Read more in plugin admin panel after activation !!!
$to = 'hello@emal.com, hello@boom.com';
$subject 'Hello from email client';
$html = 'Hello message from smtp !!!
Message from wordpress plugin!
';
// Install and activate plugin and send emails
$ok = wp_mail($to, $subject, $html);
// Show error
echo get_option('blastex_error');
?>