Welcome Guest, Not a member yet? Register   Sign In
french email subject lines not working
#3

[eluser]Riley123[/eluser]
ok an update. Below is the code.

This line will say sent in debugger but won't get sent. "Découvre ton style de décor pour une chance de gagner!";
This line with less characters sends fine. "Découvre ton style de décor"

Any ideas if this is a bug or I'm missing something?

my code

$pSubject = "Découvre ton style de décor pour une chance de gagner!";
$pSubject = convertLatin1ToHtml($pSubject);
$pSubject = mb_convert_encoding($pSubject, 'iso-8859-15', 'HTML-ENTITIES');

and this helper function

function convertLatin1ToHtml($str) {
$html_entities = array (
"&" => "&", #ampersand
"á" => "á", #latin small letter a
"Â" => "Â", #latin capital letter A
"â" => "â", #latin small letter a
"Æ" => "Æ", #latin capital letter AE
"æ" => "æ", #latin small letter ae
"À" => "À", #latin capital letter A
"à" => "à", #latin small letter a
"Å" => "Å", #latin capital letter A
"å" => "å", #latin small letter a
"Ã" => "Ã", #latin capital letter A
"ã" => "ã", #latin small letter a
"Ä" => "Ä", #latin capital letter A
"ä" => "ä", #latin small letter a
"Ç" => "Ç", #latin capital letter C
"ç" => "ç", #latin small letter c
"É" => "É", #latin capital letter E
"é" => "é", #latin small letter e
"Ê" => "Ê", #latin capital letter E
"ê" => "ê", #latin small letter e
"È" => "È", #latin capital letter E
/*... sorry cutting because limitation of php.net ...
... but the principle is it Wink ... */
"û" => "û", #latin small letter u
"Ù" => "Ù", #latin capital letter U
"ù" => "ù", #latin small letter u
"Ü" => "Ü", #latin capital letter U
"ü" => "ü", #latin small letter u
"Ý" => "Ý", #latin capital letter Y
"ý" => "ý", #latin small letter y
"ÿ" => "ÿ", #latin small letter y
"Ÿ" => "Ÿ", #latin capital letter Y
);

foreach ($html_entities as $key => $value) {
$str = str_replace($key, $value, $str);
}
return $str;
}


Messages In This Thread
french email subject lines not working - by El Forum - 08-05-2011, 07:01 PM
french email subject lines not working - by El Forum - 08-06-2011, 08:16 AM
french email subject lines not working - by El Forum - 08-06-2011, 09:05 AM
french email subject lines not working - by El Forum - 08-06-2011, 12:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB