![]() |
Mysterious Email Problem - 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: Mysterious Email Problem (/showthread.php?tid=29528) |
Mysterious Email Problem - El Forum - 04-12-2010 [eluser]alboyd[/eluser] Hi All Just throwing this out there in case someone might have seen it before... I am using the email class to send an email. I have edited the class slightly so that the character limit used in the prep_quoted_printable is 5000 instead of 76. That was just inserting random "=" and so on in my emails and I couldn't resolve any other way... I also commented out the following code in the same function: Code: if ($ascii == '61') Now my problem is that any links in my email are missing the "h" in "http" which makes them invalid and unclickable from the email. eg: a link will be ttp://www.mysite.com/blah Anyone seen this before or have any ideas? I would ideally like to not have to hobble that email class too but if I don't all the emails are ruined anyway - so surely everyone must see this same problem?? Mysterious Email Problem - El Forum - 10-13-2010 [eluser]codepotato[/eluser] Think i've solved this. Take a look here : http://ellislab.com/forums/viewthread/69463/#811241 Mysterious Email Problem - El Forum - 10-14-2012 [eluser]Unknown[/eluser] to fix the problem with "=" in outlook you will have to use Code: $config['crlf'] = "\r\n"; |