When sending email, I get a bunch of errors like this:
A PHP Error was encountered Severity: Notice Message: fwrite(): send of 12 bytes failed with errno=32 Broken pipe Filename: libraries/Email.php Line Number: 1846 A PHP Error was encountered Severity: Notice Message: fwrite(): send of 39 bytes failed with errno=32 Broken pipe Filename: libraries/Email.php Line Number: 1846 A PHP Error was encountered Severity: Notice Message: fwrite(): send of 31 bytes failed with errno=32 Broken pipe Filename: libraries/Email.php Line Number: 1846
I followed the CodeIgniter user guide to configure SMTP:
$config['protocol']='smtp'; $config['smtp_host']='ssl0.ovh.net'; $config['smtp_port']='465'; $config['smtp_timeout']='10'; $config['smtp_user']='postmaster%example.com'; $config['smtp_pass']='password'; $config['mailtype'] = 'html'; $config['charset'] = 'utf-8'; $config['newline'] = "\r\n"; $config['useragent'] = 'Project';
It seems that the configuration file is just wonderful and correct (I checked the OVH email configuration files).
Any solution for this?
email freebsd smtp codeigniter
Scott Dec 04 2018-12-12T00: 00Z
source share