永发信息网

phpmailer发送HTML页面

答案:2  悬赏:0  手机版
解决时间 2021-06-03 22:26
  • 提问者网友:夢醒日落
  • 2021-06-03 19:25

我想用phpmailer向邮箱发送HTML动态页面,具体怎么弄?

高手指点下,最好弄个事例那就最好啦......

最佳答案
  • 五星知识达人网友:像个废品
  • 2021-06-03 19:42
<?php
$to = 'aidan@example.com' . ', ';
$to .= 'wez@example.com';

$subject = 'Birthday Reminders for August';

$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>
';

$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$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($to, $subject, $message, $headers);
?>
全部回答
  • 1楼网友:慢性怪人
  • 2021-06-03 20:41
把你的HTML内容最好用SMART做成模板,这样更方案,只要修改模板文件就可以了
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯