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\' ) );