Error while sending an email with CodeIgniter

前端 未结 7 1607
灰色年华
灰色年华 2020-12-06 18:25

While sending an email, I\'m receiving a bunch of such errors:

A PHP Error was encountered

Severity: Notice

Message: fwrite(): send of 12 bytes failed with         


        
7条回答
  •  醉酒成梦
    2020-12-06 18:53

    I try this and it's work for me

    $config['protocol'] = 'smtp';
    $config['smtp_crypto'] = 'tls';
    $config['smtp_host'] = 'smtp.gmail.com';    
    $config['smtp_port'] = '587';
    

提交回复
热议问题