![]() |
[solved] not reveiving emails - 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: [solved] not reveiving emails (/showthread.php?tid=42426) |
[solved] not reveiving emails - El Forum - 06-07-2011 [eluser]SPeed_FANat1c[/eluser] Hi, I am sending the emails, but I cannot receive them in my test email box. I am using this code: Code: $this->load->library('email'); I tried using protocols sendmail and SMTP but then I get error that my server is not configured for these. And actually I see owners of this site send emails in similar way, they just wrote a function which makes more things (adds sent emails to database and so on), I tried this function as well, but no luck to see a single message in my test gmail box. Also I tried native mail() function, but also did not receive an email. Have no idea what to do now, where to check for some errors. In the page I don't see any errors Code: Your message has been successfully sent using the following protocol: mail can you help me? [solved] not reveiving emails - El Forum - 06-07-2011 [eluser]InsiteFX[/eluser] Shouldn't this be: Code: [email protected] InsiteFX [solved] not reveiving emails - El Forum - 06-07-2011 [eluser]SPeed_FANat1c[/eluser] does this Code: $this->email->from('[email protected]', 'Admin'); have to be real email address? even [email protected] does not exist. [solved] not reveiving emails - El Forum - 06-07-2011 [eluser]InsiteFX[/eluser] Test Mail Server Tool For testing all my eamils. InsiteFX [solved] not reveiving emails - El Forum - 06-08-2011 [eluser]SPeed_FANat1c[/eluser] found the mistake, I have created test box [email protected] instead of [email protected] but tried to send to [email protected] ![]() Thank you for your responses ![]() |