PHP-表格未显示后的感谢页面

在通过send_mail.PHP发送此邮件后,如何使该页面直接转到该邮件.inc.PHP-文件结构中相同位置的另一个名为ack.PHP的感谢页面

<?PHP header("Content-Type: text/html; charset=utf8");
function mail_file($to, $from, $subject, $body, $file) {
    $boundary = md5(rand());
    $headers = array(
        'MIME-Version: 1.0',
        "Content-Type: multipart/mixed; charset=UTF-8; boundary=\"{$boundary}\"",
        "Content-transfer-encoding: 8bit", //Nytt 170711
        "From: {$from}"
    );
    $message = array(
        "--{$boundary}",
        //'Content-Type: text/HTML; charset=iso-8859-1', 170707
        'Content-transfer-encoding: quoted-printable', 
        '', 
        quoted_printable_encode($body), // Här är nya innehåll kodat som quoted-printable istället. 
        '',                             // Kommer orsaka en extra radbrytning efter meddelandet.
        "--{$boundary}",
        "Content-Type: {$file['type']}; name=\"{$file['name']}\"",
        "Content-disposition: attachment; filename=\"{$file['name']}\"",
        "Content-transfer-encoding: base64", 
        '',
        chunk_split(base64_encode(file_get_contents($file['tmp_name']))),
        "--{$boundary}--",
        '',
    );
    mail($to, $subject, implode("\r\n", $message), implode("\r\n", $headers));
}
?>

解决方法:

代码末尾添加标头:

header('Location: http://www.example.com/thank_you.PHP');

它将用户重定向指定页面

编辑:

同时删除您的第一个标题

PHP header ("Content-Type: text/html; charset=utf8");

您不需要它,因为您不应该返回任何东西

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...