PHP mail()関数を使用して、いくつかの特殊文字(é、à、ü、...など)を送信したいとします。 (コードの単なるフラグメント)PHP mail()関数で特殊文字を使用する
$headers = 'From: [email protected]';
$header_ = 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n";
$to = "[email protected]";
$subject = 'Confirmation de commande';
$message = "Bonjour $firstname";
if (mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $headers)) {...
しかし、いくつかの理由で、私が得るすべてはSAA©溶岩のようなものです:私はこれを試してみました。助言?
「動作しません」と定義してください。 –
ちょうどpasséとsâlè¨veのような文字を送信します – Michiel