1

这是我的代码。当我从一个 id 向其相同的 id 发送电子邮件时,电子邮件会变成垃圾邮件。无法确定这段代码有什么问题。例如,我发送这样的电子邮件

From = abc@yahoo.com To = abc@yahoo.com 然后直接转垃圾。

    <?php

     $name=$_POST['fName'];
     $yemail = $_POST['yEmail'];
     $femail=$_POST['fEmail'];
     $message=$_POST['message']; 
     $from=$yemail;
     $to=$femail;
     $subject="Invitation for you";
     $mailBody ="<table width='628' border='0'>

    <tr><td align='left' valign='middle'><p><br><br>Hello,<br><br>This email is a       notification to let you know that your friend has invited you to <br>visit this link <a      href=www.heed-association.org>Heed Association.</a><br><br> Your friend is using this to        help people living in Pakistan by donating some money.<br><br>So your can also contribute in the areas of Health, Education, Environment and Sustainable Development<br> in the earthquake affected areas of Kashmir to improve living conditions and alleviate community distress<br><br><hr><br><br><strong>Regards<br><br>Heed Association</p></td></tr></table>";

   $headers  = 'MIME-Version: 1.0' . "\r\n";

    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

   $headers .= 'From:  <'.$yemail.'>' . "\r\n";


   if (mail($to, $subject, $mailBody, $headers)) {

   echo "<script language='javascript'>
            window.location = 'index.php';
            </script>";


   } else {
    echo "<script language='javascript'>
            window.location = 'tell_a_form.php';
            </script>";
    }



    ?>
4

2 回答 2

2

我会说检查你的垃圾邮件过滤器。听起来很傻,将电子邮件添加到安全发件人列表中。您的代码中似乎没有发生任何真正时髦的事情。

于 2012-11-16T17:24:02.850 回答
1

这可能是一个过度敏感的垃圾邮件过滤器。许多程序可以检测电子邮件是否实际上不是从“发件人”列中列出的电子邮件地址发送的。通常避免这种情况的方法是让电子邮件来自“no-reply@yourdomain.com”。

于 2012-11-16T17:18:19.620 回答