1

自動応答メールを作成しようとしていますが、コンテンツは PHP 変数です。HTMLコードを出力したいのですが、今はそうではありません。

//Example:
$respondmessage = " Hello $fullname,
 We are confirming your Appointment today!
Please <a href="http://yourlink.com/">click here to confirm</a>!
";

これは以下を出力します:

Hello Your Name,
 We are confirming your Appointment today!
Please <a href="http://yourlink.com/">click here to confirm</a>!

メールで。電子メールで HTML コードを受け入れるようにする方法はありますか?

4

3 に答える 3

0

mailPHP で組み込み関数を使用していると仮定します。

<?php
// multiple recipients
$to  = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '
<html>
<head>
  <title>Birthday Reminders for August</title>
</head>
<body>
  <p>Here are the birthdays upcoming in August!</p>
  <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
  </table>
</body>
</html>
';

// 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";

// Mail it
mail($to, $subject, $message, $headers);
?>

この例は、http: //us2.php.net/manual/en/function.mail.phpからのものです。

重要な部分は$headers変数です。

ちなみに、andrewsi が述べたように、引用符をエスケープする必要があります。

$respondmessage = "Hello $fullname,
    We are confirming your Appointment today!
    Please <a href=\"http://yourlink.com/\">click here to confirm</a>!";
于 2013-06-13T19:49:34.727 に答える