![]() |
Problem sending emails with smtp - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Problem sending emails with smtp (/showthread.php?tid=22249) |
Problem sending emails with smtp - El Forum - 09-02-2009 [eluser]kbkb[/eluser] Having Problems sending an email.. This is what in my constructor: Code: $config['protocol']='smtp'; This is the way i try to send the email: Code: $this->email->from("{absenderemail}", "{absendername}"); And this is the print_debugger-message: Code: {myprovider}ESMTP ![]() Problem sending emails with smtp - El Forum - 09-02-2009 [eluser]sophistry[/eluser] you need double-quotes around your \r\n "\r\n" EDIT: i just noticed that the SMTP program also told you that: http://pobox.com/~djb/docs/smtplf.html Problem sending emails with smtp - El Forum - 09-02-2009 [eluser]kbkb[/eluser] Cool Thank you very much. I copied it from an other forumpost here. Wonder why it works there.. Often its are the small nasty thinks what causes problems ![]() |