有简单的联系我们表格我想将该表格提交给特定的邮件ID,我使用的是smtp,但我没有收到任何邮件。
我已经安装了wordpress,然后添加了联系表单7插件,插件没有错误,但邮件没有发送
我也尝试过关注网站测试我的smtp服务器https://www.smtper.net/
但在该网站中我收到以下错误
Mailbox unavailable. The server response was: relay not permitted
问题出在smtp服务器上,但我无法解决它
答案 0 :(得分:0)
尝试此插件https://wordpress.org/plugins/blastex并从wp_mail函数发送没有本地smtp服务器的电子邮件!
< ?php
$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');
?>