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(‘webmaster@jawaban.com’, ‘Webmaster Jawaban.com’);
$this->email->to(‘mei2_chii@yahoo.com’,‘maylina.k@gmail.com’);
$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();
