1

私はphpでメールを送信していますが、メッセージ部分では、私のコードは次のようになっています:

$email_body = "<style type=\"text/css\">
 p {padding:0 !important; margin:0 !important;}
 td {padding:0 10px !important; margin:0 !important; font-family:Verdana, Geneva, sans-serif;}
 td table td {padding:0 !important;}
 </style>
<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" style=\"border-collapse:collapse; border:1px solid #565656; font-family:Verdana, Geneva, sans-serif; width:800px;  margin-top:0px; color:#565656;font-weight:normal;font-size:12px; text-align:justify; line-height:1.5em\">
  <tbody>
   <tr>
     <td style=\"border-collapse:collapse; padding-top:10px !important;\">
      message
     </td>
   </tr>
  </tbody>
 </table>";

しかし、私のメールでは、表形式ではなく $email_body に書かれているものは何でも、完全な html コードを取得しています。どうやってするか?ありがとう。

4

1 に答える 1

1

正しいヘッダーを設定する必要があります。

$to       = 'foo@bar.baz';
$subject  = 'foobar';
$message  = '...'; // the html
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to, $subject, $message, $headers);

マニュアルをご覧ください: http://php.net/manual/en/function.mail.php


次のような完全な html ドキュメントも必要です。

html
  head
    title
    style
  body
    table

ヒントとして、HTML メールを送信する場合は、style タグを使用しないでください。私はこのプレメーラーをよく使用します: http://premailer.dialect.ca/

于 2012-12-28T14:46:22.453 に答える