PHP发邮件可以使用本身自带函数mail(),但这需要你设置好服务器的邮件服务器。
还可以使用一些已经封装好的类,我最近一直在使用 PHPMailer 这个类,很好用,发送方式比较多,在Linux下可以使用SMTP,Sendmail等方式发送,你可以下载学习一下。挺简单的。
php.net中找mail()函数。php发邮件还是容易的很!
给你一个代码,来自php.net
如何使用PHP的mail函数发送HTML邮件,其实最关键的是要设置Content-type header!
本文来源于:http://cn2.php.net/manual/en/function.mail.php
// 多个收件人地址
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';
// 主题
$subject = 'Birthday Reminders for August';
// 消息体
$message = '
Here are the birthdays upcoming in August!
Person | Day | Month | Year |
---|---|---|---|
Joe | 3rd | August | 1970 |
Sally | 17th | August | 1973 |
看php手册比什么都好!