by 张宴 写了一个简单的发送HTML邮件的PHP函数。 函数说明:send_mail(“发件人地址”, “收件人地址”, “邮件主题”, “邮件正文”); 示例:send_mail($from, “info@zyan.cc”, “这是邮件的主题”, “
这是邮件正文
“); 代码如下:view plainprint?1
2
3
4
5
6
7
8
9
10
11
12
13
14<?php
function send_mail($from, $to, $subject, $message)
{
if ($from == "")
{
$from = '回忆未来 <webmaster@zyan.cc>';//发件人地址
}
$headers = 'MIME-Version: 1.0' . "\\r\\n";
$headers .= 'Content-type: text/html; charset=gb2312' . "\\r\\n";
$headers .= 'From: ' . $from . "\\r\\n";
mail($to, $subject, $message, $headers);
}
?>
本文链接: https://erik.xyz/2015/01/19/yi-ge-fa-song-html-you-jian-de-php-han-shu/
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!