08-10-2009, 05:49 PM
[eluser]Alenazi[/eluser]
I tried to send html email with email class but it did not work. The email was received as plain text with html tags not interpreted
My code looks like this
I tried to send html email with email class but it did not work. The email was received as plain text with html tags not interpreted
My code looks like this
Code:
$config['protocol'] = 'smtp';
$config['mailtpye'] = 'html';
$config['smtp_host'] = 'smtp.al3gari.com';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = '******************';
$config['smtp_port'] = '25';
$config['newline'] = "\r\n";
$this->CI->load->library('email',$config);