0

お問い合わせフォームの受信者のメールアドレスが間違っていたので、今日行ってPHPファイルを変更したところ、次のエラーが発生しました。

Warning: mail() [function.mail]: SMTP server response: 554 <info@fdb.uk.com>: Recipient address rejected: Relay access denied in \\nas19ent\Domains\f\fdb.uk.com\user\htdocs\PHP\mail.php on line 10
Error!

これは、お問い合わせフォームに使用しているコードです。

<?php
$name = $_POST['name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];
$formcontent="This message has been generated from the FDB Electrical Contact page \n Name: $name \n Phone: $phone \n Email: $email \n Message: $message";
$recipient = "info@fdb.uk.com";
$subject = "Enquiry From FDB Electrical Website";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
header('Location: ../contact2.html');
?>

これは私が書いた最初のphpで、以前はうまくいきました。

4

0 に答える 0