我得到的字符串是“谢谢...等”。 -但我无法重定向到“谢谢”页面。任何指针都非常感谢!!!
这是文件的结尾:
// Send the mail
$mail->SetFrom($email, $name);
$mail->AddReplyTo($email);
$mail->AddAddress($to);
$mail->Subject = "Message from the EnerG2 website";
$mail->Body = $message;
$mail->IsHTML(true);
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Thank you! We have received your message and will get back to you shortly.";
}
// If the errors array has values
} else {}
header('Location: http://www.example.com/thank-you.html');
?>