当前位置:首页 > PHP教程 > php应用 > 列表

用PHP实现用From发送电子邮件

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-20 12:08:58 浏览: 评论:0 

说明:用PHP实现发送电子邮件是比较简单的,大家可以看看如下完整代码。

1,把下面这段代码复制到你的网页中,可以复制到.HTML文件中。

  1. <form action="mail.php" method="post"
  2. <p align="center"
  3. <font face="Verdana"
  4. Name:<br> 
  5. <input type="text" name="name" style="border: 1px solid #000000" style="font: Verdana" style="color: #000000" style="font-size: 8pt" style="background-color: #FFFFFF"><br> 
  6. E-Mail Address:<br> 
  7. <input type="text" name="email" style="border: 1px solid #000000" style="font: Verdana" style="color: #000000" style="font-size: 8pt" style="background-color: #FFFFFF"><Br> 
  8. Website URL:<br> 
  9. <input type="text" name="url" style="border: 1px solid #000000" style="font: Verdana" style="color: #000000" style="font-size: 8pt" style="background-color: #FFFFFF"><Br> 
  10. <input type="submit" value="Submit" style="border: 1px solid #000000" style="font: Verdana" style="color: #000000" style="font-size: 8pt" style="background-color: #FFFFFF"

2,建立mail.php文件,并且和上面的保存在同一个目录中。

  1. <? 
  2. $contactemail = "you@yourdomain.com"
  3. $subject = "You choose"
  4. $message .= "Name: $namen"
  5. $message .= "E-mail: $emailn"
  6. $message .= "Website URL: $urln"
  7. mail($contactemail$subject$message); 
  8. echo "Thanks for mailing me, I should reply with in a few 
  9. days." 
  10. ?> 

Tags: 实现 From 发送电子

分享到: