在BlueHost上运行的简单PHP脚本,其中邮件由Google Apps处理:
<?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
。
答案 0 :(得分:0)
看起来我需要做两件事:
BlueHost检查From:
地址是否在cPanel中 - 即使Google Apps处理邮件也是如此。显然,cPanel会更新sendmail
的可信用户列表。
如果To:
地址在同一主机上,它也必须存在于cPanel中,虽然我不确定原因(sendmail
优化?)。