Error while sending an email with CodeIgniter

前端 未结 7 1597
灰色年华
灰色年华 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 19:00

    Same problem here... but what worked for me was these set of configuration:

    $config['protocol']     = 'smtp';
    $config['smtp_host']    = XXX;
    $config['smtp_user']    = XXX;
    $config['smtp_port']    = 25; // was 465
    $config['smtp_pass']    = XXX;
    $config['newline']      = "\r\n";
    

    And the message stopped. :D

提交回复
热议问题