Welcome Guest, Not a member yet? Register   Sign In
Email class - body stripped in outlook 2003
#5

[eluser]andreagam[/eluser]
Hi Skinnpenal,

I experienced a similar issue some time ago, and I ended up thinking that some characters resulting in the email text were non well accepted by Outlook.

So I wrote a simple little helper to filter the text string before sending it.
This is it:
Code:
function outlookfilter($text)
{    
        $text = str_replace("<br />","<br>",$text);
        $text = str_replace("&nbsp;","",$text);
        $text = str_replace("'","'",$text);        

        return $text;
}

Hope it helps,
Andrea


Messages In This Thread
Email class - body stripped in outlook 2003 - by El Forum - 07-29-2008, 03:48 PM
Email class - body stripped in outlook 2003 - by El Forum - 07-29-2008, 10:55 PM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 04:23 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 06:10 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 06:38 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 08:05 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 08:17 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 11:29 AM
Email class - body stripped in outlook 2003 - by El Forum - 07-30-2008, 01:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB