我正在使用wordpress邮件,它让我失意。 请求帮我查看代码中的错误。
$headers .= 'Content-Type: text/html; charset=ISO-8859-1' . "\r\n";
$headers .= 'From: abc@gmail.com';
$to ='user@gmail.com';
$mail_resp = wp_mail( $to , 'The subject', 'The message',$headers );
if($mail_resp){
echo "Mail send Sucessfully";
}
else{
echo "Mail Not send";
}
我收到回复邮件未发送请帮助我解决这个问题。
提前致谢
答案 0 :(得分:1)
试试这个
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-Type: text/html; charset=ISO-8859-1' . "\r\n";
$headers .= 'From: abc@gmail.com' . "\r\n";