04-12-2010, 08:24 PM
[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:
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??
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')
{
$char = $escape.strtoupper(sprintf('s', dechex($ascii))); // =3D
}
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??