Sending html email and using static template |
$body contains the message and required the email-template.
Then you have to load the email library and the follwing to support HTML and send e-mail. $this->email->set_mailtype("html"); $this->email->initialize($config); $this->load->library('email'); $this->email->from('[email protected]', 'From Name'); $this->email->to('[email protected]'); $this->email->subject('Subject'); $this->email->message($body); $this->email->send(); |
Messages In This Thread |
Sending html email and using static template - by kabeza - 04-27-2015, 02:25 PM
RE: Sending html email and using static template - by CroNiX - 04-27-2015, 02:49 PM
RE: Sending html email and using static template - by Avenirer - 04-27-2015, 11:24 PM
RE: Sending html email and using static template - by kabeza - 04-28-2015, 04:31 AM
RE: Sending html email and using static template - by madaan_tushar - 05-25-2015, 05:35 AM
|