当前位置:Gxlcms > PHP教程 > php怎么发HTML格式的EDM邮件

php怎么发HTML格式的EDM邮件

时间:2021-07-01 10:21:17 帮助过:4人阅读

网上貌似没有相关代码,看到sf发的EDM邮件,不知道是用什么相关原理做的,感觉没有思路

使用php自带的mail,直接变成了html的代码

回复内容:

网上貌似没有相关代码,看到sf发的EDM邮件,不知道是用什么相关原理做的,感觉没有思路

使用php自带的mail,直接变成了html的代码

php手册里有发送HTML邮件的例子:



  Birthday Reminders for August


  

Here are the birthdays upcoming in August!

PersonDayMonthYear
Joe3rdAugust1970
Sally17thAugust1973
'; // 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 , Kelly ' . "\r\n"; $headers .= 'From: Birthday Reminder ' . "\r\n"; $headers .= 'Cc: birthdayarchive@example.com' . "\r\n"; $headers .= 'Bcc: birthdaycheck@example.com' . "\r\n"; // Mail it mail($to, $subject, $message, $headers); ?>

使用mail函数的话,可以通过sendmail/postfix/exim之类的邮件代理来发。

或者使用phpmailer这个smtp库发。

人气教程排行