0

送信中の基本的な連絡フォームがありますが、何も受信されていません。

成功した場合にテンプレートをロードするようにフォームを設定しました。

以下のコードは私のフォームコードです

        <form name="form1" method="post" action="send_contact.php">
            <input name="name" placeholder="Name" type="text" id="name" >
            <input name="customer_mail" placeholder="Email" type="text" id="customer_mail">
            <textarea name="detail" placeholder="Message" id="detail"></textarea>
            <input type="submit" class="button" name="Submit" value="Submit">
            <input type="reset" class="button" name="Submit2" value="Reset">
        </form>

このページは私の投稿ページです

 <?php

 //Include the common file
 require_once('common.php');

 // Details
 $message="$detail";

 // Mail of sender
 $mail_from="$customer_mail"; 

 // From 
 $header="from: $name <$mail_from>";

 // Enter your email address
 $to ='EMAIL ADDRESS REMOVED';
 $send_contact=mail($to,$subject,$message,$header);

// If message sent..
if($send_contact){

//Display the template
$tpl->display('send-contact');
}
else {
echo "ERROR";
}           

?>

2 つの異なるメール アドレスとの間で送信してみましたが、メール アドレス自体にフィルターがないかどうかを確認しましたが、まだ連絡先フォームを送信できません。

誰でもこれに光を当てることができますか?

ありがとう

4

0 に答える 0