在PHP在Linux系统下如何发邮件,如果能给出PHP代码就更好了
4个回答
摩杜云
2024-07-09 广告
2024-07-09 广告
一个好的发送邮件api公司,不只是看价格,还要考虑很多因素。建议可以多找几个比对一下。您可以到摩杜云了解下。摩杜云成立于2019年,依托于公司多年技术沉淀和强大的云计算研发实力,面向全世界各个国家和地区、企业组织和个人开发者,提供全球的云计...
点击进入详情页
本回答由摩杜云提供
展开全部
php.net中找mail()函数。php发邮件还是容易的很!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给你一个代码,来自php.net
如何使用PHP的mail函数发送HTML邮件,其实最关键的是要设置Content-type header!
本文来源于:http://cn2.php.net/manual/en/function.mail.php
<?php
// 多个收件人地址
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';
// 主题
$subject = 'Birthday Reminders for August';
// 消息体
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
//要发送HTML邮件,需要设置Content-type header,此处可设置成你学要的字符集,比如UTF8,GB2132等
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
?>
如何使用PHP的mail函数发送HTML邮件,其实最关键的是要设置Content-type header!
本文来源于:http://cn2.php.net/manual/en/function.mail.php
<?php
// 多个收件人地址
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';
// 主题
$subject = 'Birthday Reminders for August';
// 消息体
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
//要发送HTML邮件,需要设置Content-type header,此处可设置成你学要的字符集,比如UTF8,GB2132等
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
?>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看php手册比什么都好!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询