Reputation: 43491
I'm using ssl://smtp.gmail.com
over port 465
with gmail, and when I try to send mail in my CodeIgniter
application, it just hangs. There's no error and no warning - it literally just hangs.
What am I doing wrong?
Upvotes: 2
Views: 1230
Reputation: 1082
I had the same problem. After trying to change every possible setting avaible in CI->email I added
$this->email->set_newline("\r\n");
and it worked.
Upvotes: 1
Reputation: 186
From the little information you gave in the question, you're not doing anything wrong.
Upvotes: 0