我正在使用 Plesk GoDaddy 服务器向用户发送电子邮件。我试过这是一个简单的邮件 PHP 函数来发送电子邮件,但它给了我这个错误。
这是我尝试过的代码。
<?php
ini_set('error_reporting', E_ALL);
error_reporting(E_ALL);
if (isset($_POST)) {
$name = $_POST['email'];
$from = "info@site.ir";
$to = 'si87841@gmail.com';
$subject = 'Test Sending';
$message = 'You got a message from '. $name;
$headers = array(
'MIME-Version: 1.0',
'Content-Type: text/html; charset="UTF-8";',
'Content-Transfer-Encoding: 7bit',
'Date: ' . date('r', $_SERVER['REQUEST_TIME']),
'From: ' . $from,
'Reply-To: ' . $from,
'Return-Path: ' . $from
);
$mailsent = mail($to, $subject, $message, implode("\n", $headers));
echo "this is mail sent---> " . $mailsent;
}
?>