简体   繁体   中英

How send to email using 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;

Error... I am using above configuration setup for sending email...

No error but i am not getting mails in my inbox.I tried 3 times.

I used default port as 25 still no mails

I think you should try

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

or try port number 465.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM