WP_mail只向Gmail发送电子邮件

时间:2020-07-17 作者:user191790

wp\\U mail只向gmail发送电子邮件,我只在gmail收件箱中接收电子邮件,但在专用服务器中无法发送或接收任何邮件,即使垃圾邮件跟踪数据只对gmail有效

        add_filter( \'wp_mail_content_type\', array( $this, \'set_html_mail_content_type\' ) );
       
        $to = [email protected];

        $subject = \'test\';
        
        wp_mail( $to, $subject, \'body\');

        remove_filter( \'wp_mail_content_type\', array( $this, \'set_html_mail_content_type\' ) );

1 个回复
SO网友:Mayank Joshi

欢迎使用WPD堆栈交换。

在我看来,有时我们忘记了添加一些基本需求和功能,但这些功能无法正常工作。

请尝试使用标题参数:

$headers[] = \'Content-type: text/plain; charset=utf-8\';  
$headers[] = \'From:\' . "[email protected]";
此外,您可以使用Easy WP SMTP 并启用调试和/或将其设置为使用SMTP。如果像GMail这样的东西可以工作,那么你就会知道这是一个服务器设置,而不是这个代码。

相关推荐

Cron not sending wp-mail()

我对cron计划功能有问题,它不想用wp_mail() 作用This is my code:它被放置在函数中。php<?php add_filter(\'cron_schedules\', \'add_review_invites_schedule\'); function add_review_invites_schedule($schedules){ $schedules[\'send_review_invites_interva