![]() |
E-mail sending bug - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: E-mail sending bug (/showthread.php?tid=7661) |
E-mail sending bug - El Forum - 04-17-2008 [eluser]EugeneS[/eluser] ok here is what i have when submitting email with the Email library CI 1.6.1: 1) in config folder i have email.php with the content: Code: <? 2) i have email template: Code: <html> 3) in controller i use next code to make all of this up and running: Code: $this->load->library('email'); 4) FINALLY i receive email with a lot of unnecessary symbols, result of multipart ? this problem still exists sinse CI 1.5.4 or even earlier Code: Details: unnecessary data: =00 --B_ALT_48081114b4585-- E-mail sending bug - El Forum - 04-17-2008 [eluser]EugeneS[/eluser] because of this bug i have to use Email class version from one of previous version where ive commented lines to avoid this injections (in most cases i dont need attachements) this commenting help to solve the problem ![]() without attachements but with correct html email ![]() hope in next CI version this problem will be solved. Code: case 'html' : |