SMTP 错误(220-我们未授权使用此系统传输未经请求的 220 and/or 群发电子邮件。)

SMTP Error(220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail.)

我目前使用的是 CodeIgniter 2.2.2,我的控制器中有以下代码:

        $config['protocol'] = "smtp";
        $config['smtp_host'] = "mail.domain.com";
        $config['smtp_port'] = "25";
        $config['smtp_user'] = "noreply@somedomain.com"; 
        $config['smtp_pass'] = "password";
        $config['charset'] = "utf-8";
        $config['mailtype'] = "html";
        $config['newline'] = "\r\n";
        $config['wordwrap'] = TRUE;
        $this->load->library('email');
        $this->email->initialize($config);

        $this->email->set_mailtype('html');
        $this->email->from('noreply@somedomain.com', 'www.somedomain.com');
        $this->email->to('someEmail');


        $this->email->subject('Email Authentication');
        $message = 'Hi';

        $this->email->message($message);

        $this->email->send();

我尝试使用端口 465 和 ssl://xxxxxxx.prod.iad2.secureserver.net。但我一点运气都没有。我尝试联系客户服务,但没有。除了给我已经知道的东西的链接之外,他们真的没有帮到我太多。 为什么我会收到消息?它阻止我向我的其他电子邮件地址发送电子邮件。 有人可以帮忙吗?

我遇到了同样的问题。经过一番研究,我发现适合我的解决方案是:

 $config['protocol'] = "mail";
 $config['smtp_port'] = 587;