CodeIgniter Forums
mail sent successful but notthing received! - 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: mail sent successful but notthing received! (/showthread.php?tid=24845)



mail sent successful but notthing received! - El Forum - 11-22-2009

[eluser]runrun[/eluser]
This is my email code:

$email='[email protected]';
$name='isack';
$subject='hello mate';
$message='just saying hello';
$this->email->from($email, $name);
$this->email->subject($subject);
$this->email->message($message);
$this->email->to('[email protected]');
$this->email->send();
echo $this->email->print_debugger();

This is what debugger said:


Your message has been successfully sent using the following protocol: mail

From: "isack"
Return-Path:
Reply-To: "[email protected]"
X-Sender: [email protected]
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
=?utf-8?Q?hello_mate?=
just saying hello


I check the destination email which is [email protected] I dont receive anything.


mail sent successful but notthing received! - El Forum - 11-22-2009

[eluser]überfuzz[/eluser]
Did you check your spam filter..?


mail sent successful but notthing received! - El Forum - 11-22-2009

[eluser]runrun[/eluser]
holly molly, its there. Now what can i do ? Me being treated as spam ?


mail sent successful but notthing received! - El Forum - 11-22-2009

[eluser]überfuzz[/eluser]
Maybe you can fix it by tinkering with X-Priority. Ask the all mighty user_guide, I think you'll find it under Email Preferences.