最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php 发送邮件代码

时间:2014-06-09 16:40来源: 作者: 点击:
本文章是利用phpmailer来实现在线发送邮件功能的源码代码. !DOCTYPEhtmlPUBLIC -//W3C//DTDXHTML1.0Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd htmlxmlns= http://www.w3.org/1999/xhtml head metahttp-equiv= C

本文章是利用phpmailer来实现在线发送邮件功能的源码代码.

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5. <title>--邀请好友参加</title> 
  6. <style type="text/css"
  7. <!-- 
  8. body { 
  9.  margin: 0px; 
  10.  padding: 0px; 
  11.  font-size: 12px; 
  12.  background-color: #CFCFCF; 
  13. input { 
  14.  line-height: 18px; 
  15.  height: 18px; 
  16.  border: 1px solid #CCCCCC; 
  17. img { 
  18.  border-top-width: 0px; 
  19.  border-right-width: 0px; 
  20.  border-bottom-width: 0px; 
  21.  border-left-width: 0px; 
  22. * { 
  23.  margin: 0px; 
  24.  padding: 0px; 
  25.  list-style-image: none; 
  26.  list-style-type: none; 
  27.  background-repeat: no-repeat; 
  28. td { 
  29.  line-height: 22px; 
  30.  font-size: 14px; 
  31.  font-weight: 700; 
  32.  color: #276662; 
  33. --> 
  34. </style> 
  35. </head> 
  36. <body> 
  37. <form action="#" method="post" name="form"
  38. <table border="0" align="center" cellpadding="0" cellspacing="0"
  39.   <tr> 
  40.     <td width="572" height="227" valign="top" background="img/mailfooterimg.gif"><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"
  41.       <tr> 
  42.         <td height="70">&nbsp;</td> 
  43.       </tr> 
  44.       <tr> 
  45.         <td><table width="100%" border="0" cellspacing="0" cellpadding="0"
  46.           <tr> 
  47.             <td><input type="text" value="http://111cn.net/" size="60" /></td> 
  48.             <td height="40"><a href="#"><img src="img/copy.gif" width="72" height="22" /></a></td> 
  49.           </tr> 
  50.         </table></td> 
  51.       </tr> 
  52.       <tr> 
  53.         <td height="28">好友姓名: 
  54.           <input type="text" size="22" /> 
  55.           &nbsp;&nbsp; 
  56.           邮箱地址: 
  57.           <input type="text" size="22" />        </td> 
  58.       </tr> 
  59.       <tr> 
  60.         <td height="28">好友姓名: 
  61.           <input type="text" size="22" /> 
  62.           &nbsp;&nbsp; 
  63.           邮箱地址: 
  64.           <input type="text" size="22" />        </td> 
  65.       </tr> 
  66.       <tr> 
  67.         <td height="28">好友姓名: 
  68.           <input type="text" size="22" /> 
  69.           &nbsp;&nbsp; 
  70.           邮箱地址: 
  71.           <input type="text" size="22" />        </td> 
  72.       </tr> 
  73.       <tr> 
  74.         <td height="28" align="right"><a href="#"><img src="img/sendbtn.gif" width="95" height="26" /></a></td> 
  75.       </tr> 
  76.     </table></td> 
  77.   </tr> 
  78. </table> 
  79. </form> 
  80. </body> 
  81. </html> 

发送邮件处理功能页面mail.php

  1. <? 
  2. require(dirname(__FILE__)."/mail/class.phpmailer.php"); //调用 phpmailer类型,如果没有phpmailer请点击这里下载phpmailer for php5/6 下载 
  3. $array =  array_unique(Get_value('mail',1));//去除重复的邮箱地址 
  4. $mail = new PHPMailer();  
  5.  $count =0;  
  6.  $bad =0; 
  7.  $mail->IsSMTP();                                      // set mailer to use SMTP 
  8.  $mail->Host = "smtp.163.com";  // smtp1.example.com;smtp2.example.comspecify main and backup server 
  9.  $mail->SMTPAuth = true;     // turn on SMTP authentication 
  10.  $mail->Username = "mailangel123";  // SMTP username 
  11.  $mail->Password = "*******"// SMTP password 
  12.  
  13.  $mail->From = "mailangel123@163.com"
  14.  $mail->FromName = "你的好友来信"
  15.  $MailBody = '内容' 
  16. $mail->AddReplyTo("mailangel123@163.com""澳优"); 
  17.    $mail->AddAddress($tmpmail,'您好!'); 
  18.    $mail->WordWrap = 50; 
  19.    $mail->CharSet="GB2312";                                  
  20.    //$mail->AddAttachment("/var/tmp/file.tar.gz");         
  21.    //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");    
  22.    $mail->IsHTML(true); 
  23.    $mail->Subject = "你的朋友邀请你一起合影!"
  24.    $mail->Body    = $MailBody
  25.    if(!$mail->Send()) 
  26.    { 
  27.       $bad++; 
  28.       $mail->ClearAddresses();    
  29.       $mail->ClearAttachments();  
  30.    } 
  31. OK就完成了哦。 
  32. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容