这是我用来测试我的一个表单的电子邮件发送的 PHP 代码。虽然它运行良好,但由于某种原因,它会将@localhost.mydomain.com 附加到发件人电子邮件地址。这是一个例子:
From: James <james.bond@hotmail.com@localhost.mydomain.com>
这是下面的完整代码。
<?php
$email = sqlEscape($_POST['email']);
$name = sqlEscape($_POST['name']);
$to = 'me@yahoo.com';
$subject = 'Email From website';
$message = 'The message here';
$headers = 'From: "'.$name.'" <"'.$email.'">' . "\n";
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n";
if(mail($to, $subject, $message, $headers)){
echo('Message sent successfully');
}else{
echo('<a href="contact.php">Click here</a> to try again.');
}
?>
有没有办法让它不附加它?谢谢