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
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