Home  >  Article  >  Backend Development  >  php怎么发HTML格式的EDM邮件

php怎么发HTML格式的EDM邮件

WBOY
WBOYOriginal
2016-06-06 20:51:481506browse

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

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

回复内容:

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

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

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

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

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

// message
$message = '
<html>

  <title>Birthday Reminders for August</title>


  <p>Here are the birthdays upcoming in August!</p>
  
Person Day Month Year
Joe 3rd August 1970
Sally 17th August 1973
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn