次のコードがあります。ご覧のとおり、replyTo フィールドを、お問い合わせフォーム内に入力された電子メールに設定しています。ただし、これは機能しません。連絡先フォームから電子メールを受信するたびに、その電子メール (メッセージ本文にある) をコピーして「宛先」フィールドに貼り付ける必要があります。宛先フィールドは事実を無視するので、別の返信メールを送信し、単にウェブサイトのメールを使用します。何が間違っている可能性がありますか?
require_once('mailer/class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "email"; // GMAIL username
$mail->Password = "password"; // GMAIL password
$mail->SetFrom("mywebsitesemail", "my name");
$mail->AddAddress("mywebsitesemail", "my name");
$mail->AddReplyTo("$email","$name");
$mail->Subject = "Subject";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML("$message");
$mail->Send();