最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
网上找到的两个PHP发送邮件的例子,很不错,贴出来给初学者参考吧(不知道是否有兄弟曾贴过),呵呵(2
时间:2022-07-02 10:34:16 编辑:袖梨 来源:一聚教程网
Advanced Example
Here we will show the full capabilities of the PHP mail function.
PHP Code:
echo "";
$recipient = "Kris Arndt,[email protected]";
$subject = "Testing the mail function";
$message = "Hello! This is the body of the message. ";
$extra = "From: [email protected] Reply-To: [email protected] ";
mail ($recipient, $subject, $message, $extra);
echo "Sending mail...";
echo "";
?>
We send an email to two people this time, by putting two email addresses in the recipient field and separating them with commas.
The fourth parameter holds extra headers for the email. We specify who the email was from and who the recipient should reply to. When entering multiple headers, separate them with the line feed and new line combination (' ').
Here we will show the full capabilities of the PHP mail function.
PHP Code:
echo "";
$recipient = "Kris Arndt
$subject = "Testing the mail function";
$message = "Hello! This is the body of the message. ";
$extra = "From: [email protected] Reply-To: [email protected] ";
mail ($recipient, $subject, $message, $extra);
echo "Sending mail...";
echo "";
?>
We send an email to two people this time, by putting two email addresses in the recipient field and separating them with commas.
The fourth parameter holds extra headers for the email. We specify who the email was from and who the recipient should reply to. When entering multiple headers, separate them with the line feed and new line combination (' ').
相关文章
- 《弓箭传说2》新手玩法介绍 01-16
- 《地下城与勇士:起源》断桥烟雨多买多送活动内容一览 01-16
- 《差不多高手》醉拳龙技能特点分享 01-16
- 《鬼谷八荒》毕方尾羽解除限制道具推荐 01-16
- 《地下城与勇士:起源》阿拉德首次迎新春活动内容一览 01-16
- 《差不多高手》情圣技能特点分享 01-16