Home > php教程 > php手册 > body text

谈谈PHP语法(5)

WBOY
Release: 2016-06-13 12:42:08
Original
1220 people have browsed it

正文:
  网上发送Email,可要用到mail()函数了。其格式如下:
  mail(收信人,主题,内容,邮件文件头);
  在网上,发送Email给站长,通常是这样的:webmaster@163.com 这样,当点击了webmaste崐r@163.com这个链接之后,就会启动默认的邮件编缉器来写Email,实在是麻烦,使用mail()函数,便可方便地编出一个在线发信页面。这种崐页面的收件人是固定的(webmaster@163.com),有需再填收件人地址了,而主题我们也可以将把它定下来。如下例:
  文件:email.html


发信给网管


网管收信








发件人:

主题:

内容:







文件:mail.php
if (empty($from) or empty($subject) or empty($content)) {echo "没有完成填写,请返回";}
$body="[主题] $subjectn";
$body.="[发件人] $fromn";
$body.=$content;
$deal=mail("webmaster@163.com",$subject,$body,"From:$from");
if ($deal) {echo "寄件成功!";}else{echo "寄件失败!!!";}
?>
  PHP介绍到此,也差不多了,你是不是感到了PHP的强大,是不是也想加入PHP的行列,就现在吧。要使自己在PHP中飞翔,这点知识还是崐不足的,它只能帮你入门而已。入门之后,就修行在个人了。我的朋友,再见──(^_^)
--(全文完)--
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!