为了账号安全,请及时绑定邮箱和手机立即绑定

php怎么发HTML格式的EDM邮件

php怎么发HTML格式的EDM邮件

侃侃尔雅 2019-03-29 10:59:48
网上貌似没有相关代码,看到sf发的EDM邮件,不知道是用什么相关原理做的,感觉没有思路使用php自带的mail,直接变成了html的代码
查看完整描述

2 回答

?
呼如林

TA贡献1798条经验 获得超3个赞

php手册里有发送HTML邮件的例子://multiplerecipients
$to='aidan@example.com'.',';//notethecomma
$to.='wez@example.com';
//subject
$subject='BirthdayRemindersforAugust';
//message
$message='
BirthdayRemindersforAugust

HerearethebirthdaysupcominginAugust!

PersonDayMonthYear
Joe3rdAugust1970
Sally17thAugust1973
';
//TosendHTMLmail,theContent-typeheadermustbeset
$headers='MIME-Version:1.0'."\r\n";
$headers.='Content-type:text/html;charset=iso-8859-1'."\r\n";
//Additionalheaders
$headers.='To:Mary,Kelly'."\r\n";
$headers.='From:BirthdayReminder'."\r\n";
$headers.='Cc:birthdayarchive@example.com'."\r\n";
$headers.='Bcc:birthdaycheck@example.com'."\r\n";
//Mailit
mail($to,$subject,$message,$headers);
?>
                            
查看完整回答
反对 回复 2019-03-29
  • 2 回答
  • 0 关注
  • 264 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信