如果您有项目需要开发,可以联系我们
果果开发

WordPress无法发送电子邮件

作者: admin 发布时间:2025-05-15 14:37:24

WordPress无法发送电子邮件,一般是服务器没有安装对应的邮件发送软件,即使安装了,您的服务器一般可能也无法发送邮件。

有个更好的解决办法,就是使用SMTP来发送邮件,很多邮箱都支持这个功能。

可以在WordPress后台搜索这类插件,找一个安装使用即可。

如果不想使用插件,可以在主题代码(functions.php)里添加以下代码,即可正常使用邮件发送功能。

function send_smtp_email( $phpmailer ) {
    $phpmailer->isSMTP();
    $phpmailer->Host       = 'smtp.qq.com';
    $phpmailer->SMTPAuth   = true;
    $phpmailer->Port       = 587;
    $phpmailer->Username   = '1445023846@qq.com';
    $phpmailer->Password   = '密码';
    $phpmailer->SMTPSecure = 'tls';
    $phpmailer->From       = '1445023846@qq.com';
    $phpmailer->FromName   = '果果开发';
}
add_action( 'phpmailer_init', 'send_smtp_email' );

QQ邮箱可以参考下图配置: