Welcome Guest, Not a member yet? Register   Sign In
Issue with HTML generated from CI Email class
#11

[eluser]chamil sanjeewa[/eluser]
this code is working fine
$this->load->library('email');
$this->load->library('parser');



$this->email->clear();
$config['mailtype'] = "html";
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]', 'Website');
$list = array('[email protected]', '[email protected]');
$this->email->to($list);
$data = array();
$htmlMessage = $this->parser->parse('messages/email', $data, true);
$this->email->subject('This is an email test');
$this->email->message($htmlMessage);



if ($this->email->send()) {
echo 'Your email was sent, thanks chamil.';
} else {
show_error($this->email->print_debugger());
}




Theme © iAndrew 2016 - Forum software by © MyBB