Variables load from config Folder autoload File Helper
Example : $autoload['helper'] = array('text','html','email');
//IMP to add this below 2 line for sending html email configuration
$email_setting = array('mailtype' => 'html');
$this->email->initialize($email_setting);
//IMP
$this->email->to('admin@gmail.com');
$this->email->from('admin@gmail.com');
$emailmsg = "Message : Hi This is Test Mail";
$emailmsg.= "<table width='50%' border='0'>
<tr><td>Name : </td></tr>
<tr><td>Address : </td>
<td>#151 5th main 3rd Cross United State Of America</td>
</tr></table>";
$this->email->message($emailmsg);
$this->email->send();
Send Html Email in Codeigniter / HTML Email Configuration In Codeigiter
No comments:
Post a Comment