![]() |
Email sending problem to rediffmail - 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: Email sending problem to rediffmail (/showthread.php?tid=2052) |
Email sending problem to rediffmail - El Forum - 07-13-2007 [eluser]Unknown[/eluser] $this->email->clear(); $this->email->to($address); $this->email->from($from2 , 'WebMaster'); $this->email->subject('Membership Purchased'); $this->email->message($body_admin); $this->email->send(); I'm Using this code to send email . it's working fine with all the address but i'm not able to receive email from rediffmail.com $address is the address of the person at receiving end. Please let me know why this is so????????????????? Email sending problem to rediffmail - El Forum - 07-13-2007 [eluser]Glen Swinfield[/eluser] I don't know anything about rediff specifically but sometimes system generated emails do get spam filtered because they believe the sender is 'forged'. - Check you spam filter settings. It's not a problem with CI - what does the email debugger say? Code: echo $this->email->print_debugger(); |