我正在使用 phpmailer 发送电子邮件,当电子邮件发送成功后,我想将页面重定向到其他页面,但它不起作用。
我尝试使用服务器端重定向,即header();
,但它不起作用。
当我在客户端尝试它时,它完全重定向到其他页面。而且我没有sessions
在这个页面或其他页面上使用过任何东西。
下面是我尝试过的代码
if(!$mail->Send()){
echo "Mailer Error: ". $mail->ErrorInfo;
}else{
//echo "Message sent!";
header('Location: contactus-thankyou.php');
?>
<!-- <meta http-equiv="refresh" content="0; url=contactus-thankyou.php" /> -->
<?php
}