cakephp与某些域名的电子邮件问题

时间:2015-04-08 08:27:43

标签: email cakephp smtp

我有cakephp应用程序,它没有我们使用ip访问的域名。 我使用以下smpt设置发送电子邮件

class EmailConfig {

public $smtp = array(
    'transport' => 'Smtp',
    'from' => array('myemail@otherdomain.com' => 'my name'),
    'host' => 'mail.otherdomain.com',//not the same domain from which sending email
    'port' => 25,
    'timeout' => 30,
    'username' => 'myemail@otherdomain.com',
    'password' => 'password',
    'client' => null,
    'log' => false,
    //'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
  );
}

所有电子邮件都发送到any_email @ gmail,otherdomain等 但是只有一个特定的政府域名(abc.gov.com)没有收到电子邮件 他们可能已经实施了一些安全措施,这些措施可能会阻止我发送给他们的电子邮件,我可以尝试在我这边做什么,以及如何进行调试以获得确切的错误。
我试图在哪里发送电子邮件 to = email@abc.gov.com
cc = email@otherdomain.com
email@otherdomain.com正在收到同一封电子邮件,而不是email@abc.gov.com

0 个答案:

没有答案