我正在使用mail
从 PHP 发送电子邮件。它工作正常,但现在我需要使用更安全的邮件服务器。
我需要使用以下配置连接邮件服务器:
smtp: "mail.newserver.com"
port: "25"
timeout: 60
auth: yes
user: name
pass: word
我应该如何更改下面的代码以使其适用于上述配置?
$to = $SendTo;
$headers = "From: <info@---->" . "\r\n" . "X-Mailer: php";
$subject = "Website Contact : " . $uxGlobalLocation;
$body = $Bodycopy;
if (mail($to, $subject, $body, $headers)) {
header ('Location: /index.php?option');
exit();
} else {
echo("<p>Message delivery failed...</p>");
}