php biçimlendirilmiş html gmail Yahoo mail kadar gösterir ama

0 Cevap php

Ben PHP kullanarak e-postalar göndermek için mAmp (LAMP yığın geliştirme ortamı) kullanıyorum.

Kod aşağıda:

$out_message = '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>You have requested an appointment with the Smile Zone</title>
</head>

<body>
<p style="font-family:Arial, Helvetica, sans-serif;"><strong>Dear '.$details_name.'</strong></p>
<p style="font-family:Arial, Helvetica, sans-serif">You have requested an appointment!</p>
<p style="padding:10px;"><strong>Please note that this appointment is currently unconfirmed</strong></p>
</body>
</html>
';

//now for the client side:
$out_to = 'john@gmail.com';
$out_subject = 'My Subject';

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= "To: John <john@gmail.com> \r\n";
$headers .= 'From: The Smile Zone <noreply@smile-zone.com>' . "\r\n";

$success2 = mail($out_to, $out_subject, $out_message, $headers);

Apple Mail'de bu e-posta ve görünümü göndermek zaman, ancak GMail, tarayıcıda Ben olsun tüm ham kaynağı gerektiği gibi görünür.

Neden bu?

0 Cevap