Welcome Guest, Not a member yet? Register   Sign In
Mysterious Email Problem
#1

[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')
{
$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??
#2

[eluser]codepotato[/eluser]
Think i've solved this.

Take a look here : http://ellislab.com/forums/viewthread/69463/#811241
#3

[eluser]Unknown[/eluser]
to fix the problem with "=" in outlook you will have to use
Code:
$config['crlf'] = "\r\n";
in your config\email.php




Theme © iAndrew 2016 - Forum software by © MyBB