我使用了mail()
,当我尝试使用“测试”时,主题邮件可以很好地收集到收件箱但是当我将主题行更改为6或7个字时,邮件将会发送垃圾邮件。请任何人帮助我。因为我的主题会不断变化,所以即使我改变了主题,我也需要一个永久的解决方案。
我试图将发件人放入$ header并且我使用mime类型进行检查仍然无法正常工作
require_once("mailer.php");
if(isset($_POST['to']) && !empty($_POST['to']) && isset($_POST['subject']) && !empty($_POST['subject']) && isset($_POST['from'])
&& !empty($_POST['from'])){
$receieverEmailIdArray = explode(',',$_POST['to']);
$from= $_POST['from'];
$subject= $_POST['subject'];
}
else {
echo "Fill all the fields.";
die();
}
$smtptype= 'godaddy';
$content= "<html>
</html>"
谢谢, Raghu
答案 0 :(得分:0)
您可以在下方添加详细标题代码。
$headers = "From: Example@site.com\r\n";
$headers .= "Reply-To: Example@site.com\r\n";
$headers .= "Return-Path: Example@site.com\r\n";
$headers .= "CC: Example@site.com\r\n";
if ( mail($to,$subject,$message,$headers) )
{
echo "The email has been Successfully sent!";
}
else
{
echo "Email Sending Failed";
}
?>
请参阅本网站,其中包含一些有用的信息Click Here!!!