メールを送信するための次のコードがあります。
$email_to = 'someone@somewhere.com';
$name = $_POST['name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$headers = 'From: ' . $name . ' <' . $email_to . '>' . "\r\n" . 'Reply-To: ' . $email;
if(mail($email_to, $subject, $message, $headers)) {
echo 'sent'; // sending this text to the ajax request telling it that the mail is sent..
} else {
echo 'failed'; // ... or this one to tell it that it wasn't sent
}
メールは問題なく送信されますが、メッセージとともに電話番号を表示する必要があります。きっと簡単に直せると思います。誰かが私を学校に連れて行ったら、それで終わりましょう! :)