![]() |
Not receiving Emails: $this->email->send() vs. mail() - 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: Not receiving Emails: $this->email->send() vs. mail() (/showthread.php?tid=56245) |
Not receiving Emails: $this->email->send() vs. mail() - El Forum - 12-05-2012 [eluser]Unknown[/eluser] Hi all, I have problems with receiving emails, sent out of a controller. the email library is loaded and I also have an email configuration file under application/config/email.php application/config/email.php: Code: <?php defined('BASEPATH') OR exit('No direct script access allowed'); controller code: Code: $this->load->library('email'); I also trying to send an email with this: Code: $receiver = '[email protected]'; Now the only email i am receiving it the email sent via mail() the other email sent via $this->email->send() does not arrive. but $this->email->print_debugger() is telling that the email has successfully been sent. what is the probleme here? can anyone please help me out? (sorry for my bad english) Not receiving Emails: $this->email->send() vs. mail() - El Forum - 12-06-2012 [eluser]leet_2k[/eluser] I think you and I might have same problem. http://ellislab.com/forums/viewthread/230570/ Let me know if you find anything. See what I gave done and let me know what happen s |