![]() |
I can not send HTML email with email class - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: I can not send HTML email with email class (/showthread.php?tid=21459) |
I can not send HTML email with email class - El Forum - 08-10-2009 [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 Code: $config['protocol'] = 'smtp'; I can not send HTML email with email class - El Forum - 09-29-2009 [eluser]density5[/eluser] [quote author="Alenazi" date="1249966175"]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'; looks wrong -> $config['mailtpye'] = 'html'; Shoud it not be -> $config['mailtype'] = 'html'; |