ホームページ >バックエンド開発 >PHPチュートリアル >php怎么发HTML格式的EDM邮件
网上貌似没有相关代码,看到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 |