我无法向Outlook发送电子邮件

时间:2015-12-01 03:59:42

标签: php email codeigniter-2

大家好我已经尝试使用php代码点火器发送电子邮件。 但它只发送给gmail和yahoo邮件。它不会发送到任何其他服务器,如live.com,Outlook等。请帮助我。

$this->load->helper('email');
$this->load->library('email'); // load the library
$config = Array(
                         'protocol' => 'smtp',
                         'smtp_host' => 'mail.xxxxxx.com',
                         'smtp_port' => 25,
                         'smtp_user' => 'info@xxxxxx.com', // change it to yours
                         'smtp_pass' => '', // change it to yours
                         'mailtype' => 'html',
                         'charset' => 'utf-8',
                         'wordwrap' => TRUE,
                         'crlf' => '\r\n',
                        'newline' => '\r\n'
                        );  
$this->load->library('email', $config);

0 个答案:

没有答案