Heim  >  Artikel  >  Backend-Entwicklung  >  php怎么发HTML格式的EDM邮件

php怎么发HTML格式的EDM邮件

WBOY
WBOYOriginal
2016-06-06 20:51:481508Durchsuche

网上貌似没有相关代码,看到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
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn