如何使用codeigniter发送到电子邮件

时间:2013-09-28 10:29:54

标签: php codeigniter

    $config['protocol'] = "smtp";
    $config['smtp_host'] = "ssl://smtp.tch-pnt.in";  //
    $config['smtp_port'] = 587;
    $config['smtp_user'] = "bnft@tch-pnt.in";
$config['smtp_pass'] = "********";
    $config['charset'] = "utf-8";
    $config['mailtype'] = "html";
    $config['newline'] = "\r\n";
    $config['wordwrap'] = TRUE;

...错误 我使用上面的配置设置发送电子邮件...

没有错误,但我没有在收件箱中收到邮件。我尝试了3次。

我使用默认端口25仍然没有邮件

1 个答案:

答案 0 :(得分:0)

我想你应该试试

$config['smtp_host'] = "sslv2://smtp.tch-pnt.in";  

或尝试端口号465。