我想为成功发送电子邮件创建一个简单的模式/消息。我有一个带有 PHP 邮件程序的联系表。有一个 PHP 重定向,我不知道如何自定义它。
我不想收到失败案例的消息,因为有一个验证脚本。你能给我一个提示吗?
这是重定向代码:
<?php
class Redirect{
public static function to($location = null) {
if($location) {
if(is_numeric($location)) {
switch($location) {
case 404:
header('HTTP/1.0 404 Not Found');
include 'includes/errors/404.php';
exit();
break;
}
}
header('Location: ' . $location);
exit();
}
}
}