0
    $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 仍然没有邮件

4

1 回答 1

0

我觉得你应该试试

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

或尝试端口号 465。

于 2013-09-28T12:23:28.797 回答