如何直观地增强MAILTO数据提交的文字?

时间:2013-12-02 18:24:58

标签: php html-email mailto

我正在构建一个网站联系表单,该表单使用MAILTO发送用户通过Web表单提交的文本。但是,收到MAILTO文本的电子邮件帐户“丑陋”,并且想知道是否有办法将该文本转换为HTML格式以便在视觉上增强,而不必依赖某些后端脚本。

或者,有更好的方法吗?

感谢。

1 个答案:

答案 0 :(得分:0)

你不能使用mailto格式化html体,你需要使用php的mail()函数,

这是一个简短的例子:

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

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

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

更多细节:http://php.net/manual/en/function.mail.php