2011-01-20 5 views
0

では見つかりません受信者のアドレスが、私はこのエラーを得なかっ: - ヘッダーで見つかりません受信者のアドレスをヘッダ

ここ

は私を助けてくださいコード

//私のコードはここに

 $to = [email protected]; 
     $subject = $_POST['txtsub']; 
     $messgae = $_POST['txtmessage']; 
     $signature = $_POST['txtsignature']; 
     $redirect = "thanks.php"; 
     $error = "error.php"; 

      $body ="<table width='700' align='center' cellpadding='0' cellspacing='0' border='0'> 
       <tr> 
       <td valign='top'> 
         $messgae <br> 
       </td> 
       </tr> 
       <tr> 
       <td valign='top'> 
         $signature <br> 
       </td> 
       </tr> 
      </table>"; 

      $from  = "Aakrutisolutions<[email protected]>"; 
      $headers = "From: $from\n"; 
      $headers .= 'MIME-Version: 1.0' . "\r\n"; 
      $headers .= "Content-type: text/html;charset=iso-8859-1\r\n"; 
      $headers .= "Content-Transfer-Encoding: 8bit\r\n"; 
      $headers .= "X-Priority: 1\r\n"; 
      $headers .= "X-MSMail-Priority: High\r\n"; 
      $headers .= "X-Mailer: Just My Server\r\n"; 
      $headers .= "".$body."\n"; 

        if(mail($to, $subject, $message, $headers)) 
        { 
         ?> 
         <script language="javascript"> 
         location.href='bulkmail.php?sts=mailsent'; 
         </script> 
         <?php 
        } 
        else 
        { 
         ?> 
         <script language="javascript"> 
         location.href='bulkmail.php?sts=mailnotsent'; 
         </script> 
         <?php 

        } 

// Mから始まりますyコードはここで終わりです

+0

は私たちにあなたがあの –

+0

を使用している正確なPHPコードを表示...いくつかのコードは、私たちが*で*あなたを助けることができることをしてください? – deceze

+0

これはPHPメールの一般的なエラーです。私はすべてが答えを知っていると思います。大丈夫です。コードをコピーして、コードが1つのサーバーで動作していますが、godadyサーバーでエラーが発生します。 – Navruk

答えて

8

私はコメントの皮肉を理解することができます。決して少なくはありません。答えが明らかであっても、そのように振る舞うのは大丈夫です。私はあなたがメッセージを読んで、それを自分でしようと提案し

$headers = 'From: Navruk <[email protected]>' . "\r\n" . 
      'To: Navruk1 <[email protected]>, Navruk2 <[email protected]>' . "\r\n" . 
      'Cc: Navruk3 <[email protected]>' . "\r\n" . 
      'Bcc: Navruk4 <[email protected]>' . "\r\n" . 
      'Reply-To: [email protected]' . "\r\n" . 
      'X-Mailer: PHP/' . phpversion(); 

mail(
     "[email protected]", 
     "How to do basic mailing", 
     "I can easily GOOGLE and find this LINK at the top http://php.net/manual/en/function.mail.php. Surprisingly, it is the PHP manual. If I CLICK this link I will find not only how to use the PHP command mail, but also a bunch of examples! This took me about 10 seconds to find.", 
     $headers 
    ); 

、あなたは私の10秒を打つことができます。情報を見つけることは非常に簡単ですか!?

+1

あなたの答えはコメントよりも皮肉なものです... ...? ; o) – deceze

+0

Hehe、フィーチャの触れた皮肉:Dとにかく、Eugene Mayevskiは私たちをすべて馬鹿のように見せかけてくれました。 –

+0

男との対価のために+1。人々は賢く、より強く、または豊かであるためにのみ、他人に無礼である必要はありません...グッド・グレッグ攻撃=) –