Welcome Guest, Not a member yet? Register   Sign In
Failed using an SMTP server to send emails
#1

[eluser]Unknown[/eluser]
Hi everyone...Pliz help me...
I'm new in CI and try to send email use smtp.
I didn't get error code, and from the code below I always get "Message has been sent"
but the receiver didn't get the email.

Can u help me what's wrong with my code?

Here is my code :

$config = Array(
'protocol' => "smtp",
'smtp_host' => "localhost",
'smtp_port' => 25,
'smtp_user' => "",
'smtp_pass' => "",
'smtp_timeout' => 10,
'priority' => 3,
'mailtype' => "text/html",
'charset' => "iso-8859-1",
'mailpath' => "/usr/sbin/sendmail",
'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]', 'Webmaster Jawaban.com');
$this->email->to('[email protected]','[email protected]');
$this->email->subject($this->input->post('subject'));
$this->email->message($this->input->post('message'));
$this->email->send();

if (!$this->email->send())
$vars['error_messages'] = show_error($this->email->print_debugger());
else
$vars['success_messages'] = "Message has been sent";

$this->email->clear();


Messages In This Thread
Failed using an SMTP server to send emails - by El Forum - 10-06-2009, 02:35 AM
Failed using an SMTP server to send emails - by El Forum - 10-06-2009, 04:28 AM
Failed using an SMTP server to send emails - by El Forum - 10-08-2009, 12:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB