我正在使用 CakePHP 向客户发送自动电子邮件。它一直运行良好,但似乎有些收件人没有收到我们的电子邮件。所以我决定使用 SMTP 选项来发送电子邮件,并通过我们位于 Media Temple 的电子邮件提供商发送电子邮件。但是,当尝试从 Media Temple 帐户发送电子邮件时,我收到错误“550 - 不允许中继”。听起来 Media Temple 服务器只是简单地不允许我通过它发送邮件。这很奇怪,因为我已经确认我使用的用户名和密码是正确的,并且我可以通过我的 macmail 客户端和 iPhone 邮件客户端通过 SMTP 发送邮件。我还确认我的 cakephp 电子邮件设置是正确的,因为我可以使用与 cakephp 中完全相同的配置的 gmail 帐户通过 SMTP 发送电子邮件。知道为什么我 我收到此错误以及如何解决?谢谢
这是处理发送电子邮件的代码。我在许多不同的控制器中使用这个类,就像使用常规的 EmailComponent 一样。
class CanadafindsEmailerComponent extends EmailComponent
{
...
function send($content = null, $template = null, $layout = null) {
if(!in_array(TECHY_MONITOR_EMAIL,$this->bcc) && is_array($this->bcc))
$this->bcc[]=TECHY_MONITOR_EMAIL;
else if (!in_array(TECHY_MONITOR_EMAIL,$this->bcc) && !is_array($this->bcc))
$this->bcc=array(TECHY_MONITOR_EMAIL);
if(DEVSITE){//commented-out code are settings for smtp with gmail, which works fine
$this->delivery = 'smtp';
$this->smtpOptions = array(
'port'=>'465',//'465',
'timeout'=>'30',//'30',
'auth' => true,
'host' => 'ssl://mail.thenumber.biz',//'ssl://smtp.gmail.com',
'username'=>USERNAME,//'USERNAME@gmail.com',
'password'=>SMTP_PASSWORD//,
);
$this->to=$this->correctFormatOn($this->to);
$this->bcc=$this->correctFormatOn($this->bcc);
$this->cc=$this->correctFormatOn($this->cc);
$this->replyTo=$this->correctFormatOn($this->replyTo);
$this->from=$this->correctFormatOn($this->from);
}
return parent::send($content,$template,$layout);
}
function correctFormatOn(&$email){
if(is_array($email)){
$copiedEmail=array();
foreach($email as $singleEmail){
$copiedEmail[]=$this->correctFormatOnSingle($singleEmail);
}
$email=$copiedEmail;
}else{
$email=$this->correctFormatOnSingle($email);
}
return $email;
}
function correctFormatOnSingle(&$email){
$subEmails=explode(",",$email);
$fixedSubEmails=array();
foreach($subEmails as $subEmail){
$fixedSubEmails[]=preg_replace('/<?([^< ]+)@([^>,]+)[>,]?/i', '<$1@$2>', trim($subEmail));
}
$email=implode(",",$fixedSubEmails);
return $email;
}
}