运行在BlueHost上的简单PHP脚本,其中邮件由Google处理:
<?php
require_once('Mail.php');
$subject = 'Test Subject';
$message = 'Test Message';
$to = 'to@example.com'; // address on this domain
$from = 'from@example.com'; // another address on the domain
$fromname = 'John Doe';
$headers = array(
'Return-Path' => $from,
'From' => $from,
'X-Priority' => '3',
'X-Mailer' => 'PHP ' . phpversion(),
'Reply-To' => "$fromname <$from>",
'MIME-Version' => '1.0',
'Content-Transfer-Encoding' => '8bit',
'Content-Type' => 'text/plain; charset=UTF-8',
'To' => $to,
'Subject' => $subject
);
$params = '-i -v -f ' . $from;
$sendmail = Mail::factory('sendmail', $params);
$mail = $sendmail->send($to, $headers, $message);
if (PEAR::isError($mail)) { $status = $mail->getMessage(); }
?>$status被设置为sendmail returned error code 8。
发布于 2013-12-10 14:56:59
看来我需要做两件事:
From:地址是否在cPanel中--即使Google处理邮件。显然,cPanel更新了sendmail的可信用户列表。To:地址位于同一台主机上,那么它也必须存在于cPanel中,尽管我不知道为什么(sendmail优化?)。https://stackoverflow.com/questions/20497683
复制相似问题