Modif du content-type par dfaut en 8859-15

This commit is contained in:
Rodolphe Quiedeville 2003-07-08 19:52:13 +00:00
parent 161ea28556
commit af3d3d2a75

View File

@ -81,7 +81,8 @@ class CMailFile
if (strlen($filename))
{
$out = "--" . $this->mime_boundary . "\n";
$out = $out . "Content-Type: text/plain; charset=\"us-ascii\"\n\n";
$out = $out . "Content-Type: text/plain; charset=\"iso8859-15\"\n\n";
// $out = $out . "Content-Type: text/plain; charset=\"us-ascii\"\n\n";
}
$out = $out . $msgtext . "\n";
return $out;