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

最模板

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

phpmailer发送邮件代码

时间:2014-06-09 16:40来源: 作者: 点击:
本文章收藏了两款利用phpmailer来发送邮件,当前如果你的机器配置好了php自带的邮件发送功能那更好哦,mail()这个那就更方便了。 */ function smtp_mail( $sendto_email , $subject , $body ){ global $mailconfig , $_

本文章收藏了两款利用phpmailer来发送邮件,当前如果你的机器配置好了php自带的邮件发送功能那更好哦,mail()这个那就更方便了。

  1. */ 
  2. function smtp_mail ($sendto_email,$subject,$body) { 
  3. global $mailconfig,$_cfg
  4. $mail = new phpmailer();   
  5. $mail->issmtp(); 
  6. $mail->host = $mailconfig['smtpservers'];//smtp servers   
  7. $mail->smtpauth = true;// 启用smtp验证功能  
  8. $mail->username = $mailconfig['smtpusername'];  
  9. $mail->password = $mailconfig['smtppassword'];  
  10. $mail->from =$mailconfig['smtpfrom'];  
  11. $mail->fromname =$_cfg['site_name'];  
  12. $mail->charset = "gb2312"
  13. $mail->encoding = "base64"
  14. $mail->addaddress($sendto_email,"");//收件人地址,可以替换成任何想要接收邮件的email信箱,格式是addaddress("收件人email","收件人姓名")  
  15. $mail->addreplyto($mailconfig['addreplyto'],"");//增加回复标签addreplyto  
  16. $mail->ishtml(true); 
  17. $mail->subject = $subject
  18. $mail->body =$body
  19. $mail->altbody ="text/html";//该属性的设置是在邮件正文不支持html的备用显示 
  20. if(!$mail->send())   
  21. return false; 
  22. //echo "邮件发送有误 

    ";   

  23. //echo "邮件错误信息: " . $mail->errorinfo; 
  24. }   
  25. else { 
  26. return true; 
  27. }  

方法二

  1. class email {  
  2. //---设置全局变量  
  3. var $mailto = ""// 收件人  
  4. var $mailcc = ""// 抄送  
  5. var $mailbcc = ""// 秘密抄送  
  6. var $mailfrom = ""// 发件人  
  7. var $mailsubject = ""// 主题  
  8. var $mailtext = ""// 文本格式的信件主体  
  9. var $mailhtml = ""// html格式的信件主体  
  10. var $mailattachments = ""// 附件  
  11. /* 函数setto($inaddress) :用于处理邮件的地址 参数 $inaddress  
  12. 为包涵一个或多个字串,email地址变量,使用逗号来分割多个邮件地址  
  13. 默认返回值为true  
  14. **********************************************************/  
  15. function setto($inaddress){  
  16. //--用explode()函数根据","对邮件地址进行分割  
  17. $addressarray = explode",",$inaddress);  
  18. //--通过循环对邮件地址的合法性进行检查  
  19. for($i=0;$icheckemail($addressarray[$i])==false) return false; }  
  20. //--所有合法的email地址存入数组中  
  21. $this->mailto = implode($addressarray",");  
  22. return true; }  
  23. /**************************************************  
  24. 函数 setcc($inaddress) 设置抄送人邮件地址  
  25. 参数 $inaddress 为包涵一个或多个邮件地址的字串,email地址变量,  
  26. 使用逗号来分割多个邮件地址 默认返回值为true  
  27. **************************************************************/  
  28. function setcc($inaddress){  
  29. //--用explode()函数根据","对邮件地址进行分割  
  30. $addressarray = explode",",$inaddress);  
  31. //--通过循环对邮件地址的合法性进行检查  
  32. for($i=0;$icheckemail($addressarray[$i])==false) return false; }  
  33. //--所有合法的email地址存入数组中  
  34. $this->mailcc = implode($addressarray",");  
  35. return true; }  
  36. /***************************************************  
  37. 函数setbcc($inaddress) 设置秘密抄送地址 参数 $inaddress 为包涵一个或多  
  38. 个邮件地址的字串,email地址变量,使用逗号来分割多个邮件地址 默认返回值为  
  39. true  
  40. ******************************************/  
  41. function setbcc($inaddress){  
  42. //--用explode()函数根据","对邮件地址进行分割  
  43. $addressarray = explode",",$inaddress);  
  44. //--通过循环对邮件地址的合法性进行检查  
  45. for($i=0;$i<count($addressarray);$i++)  
  46. if($this->checkemail($addressarray[$i])==false)  
  47. return false;  
  48. }  
  49. //--所有合法的email地址存入数组中  
  50. $this->mailbcc = implode($addressarray",");  
  51. return true;  
  52. }  
  53. /*****************************************************************  
  54. 函数setfrom($inaddress):设置发件人地址 参数 $inaddress 为包涵邮件  
  55. 地址的字串默认返回值为true  
  56. ***************************************/  
  57. function setfrom($inaddress){  
  58. if($this->checkemail($inaddress)){  
  59. $this->mailfrom = $inaddress;  
  60. return true;  
  61. return false; }  
  62. /**********************  
  63. 函数 setsubject($insubject) 用于设置邮件主题参数$insubject为字串,  
  64. 默认返回的是true  
  65. *******************************************/  
  66. function setsubject($insubject){  
  67. if(strlen(trim($insubject)) > 0){  
  68. $this->mailsubject = ereg_replace"n""",$insubject);  
  69. return true; }  
  70. return false; }  
  71. /****************************************************  
  72. 函数settext($intext) 设置文本格式的邮件主体参数 $intext 为文本内容默  
  73. 认返回值为true  
  74. ****************************************/  
  75. function settext($intext){  
  76. if(strlen(trim($intext)) > 0){  
  77. $this->mailtext = $intext;  
  78. return true; }  
  79. return false;  
  80. }  
  81. /**********************************  
  82. 函数sethtml($inhtml) 设置html格式的邮件主体参数$inhtml为html格式,  
  83. 默认返回值为true  
  84. ************************************/  
  85. function sethtml($inhtml){  
  86. if(strlen(trim($inhtml)) > 0){  
  87. $this->mailhtml = $inhtml;  
  88. return true; }  
  89. return false; }  
  90. /**********************  
  91. 函数 setattachments($inattachments) 设置邮件的附件 参数$inattachments  
  92. 为一个包涵目录的字串,也可以包涵多个文件用逗号进行分割 默认返回值为true  
  93. *******************************************/  
  94. function setattachments($inattachments){  
  95. if(strlen(trim($inattachments)) > 0){  
  96. $this->mailattachments = $inattachments;  
  97. return true; }  
  98. return false; }  
  99. /*********************************  
  100. 函数 checkemail($inaddress) :这个函数我们前面已经调用过了,主要就是  
  101. 用于检查email地址的合法性  
  102. *****************************************/  
  103. function checkemail($inaddress){  
  104. return (ereg"^[^@ ]+@([a-za-z0-9-]+.)+([a-za-z0-9-]{2}|net|com|gov|mil|org|edu|int)$",$inaddress));  
  105. }  
  106. /*************************************************  
  107. 函数loadtemplate($infilelocation,$inhash,$informat) 读取临时文件并且  
  108. 替换无用的信息参数$infilelocation用于定位文件的目录  
  109. $inhash 由于存储临时的值 $informat 由于放置邮件主体  
  110. ***********************************************************/  
  111. function loadtemplate($infilelocation,$inhash,$informat){  
  112. /* 比如邮件内有如下内容: dear ~!username~,  
  113. your address is ~!useraddress~ */  
  114. //--其中"~!"为起始标志"~"为结束标志  
  115. $templatedelim = "~";  
  116. $templatenamestart = "!";  
  117. //--找出这些地方并把他们替换掉  
  118. $templatelineout = ""//--打开临时文件  
  119. if($templatefile = fopen($infilelocation"r")){  
  120. while(!feof($templatefile)){  
  121. $templateline = fgets($templatefile,1000);  
  122. $templatelinearray = explode($templatedelim,$templateline);  
  123. for$i=0; $i<count($templatelinearray);$i++){  
  124. //--寻找起始位置  
  125. if(strcspn($templatelinearray[$i],$templatenamestart)==0){  
  126. //--替换相应的值  
  127. $hashname = substr($templatelinearray[$i],1);  
  128. //--替换相应的值  
  129. $templatelinearray[$i] = ereg_replace($hashname,(string)$inhash[$hashname],$hashname);  
  130. }  
  131. }  
  132. //--输出字符数组并叠加  
  133. $templatelineout .= implode($templatelinearray"");  
  134. //--关闭文件fclose($templatefile);  
  135. //--设置主体格式(文本或html)  
  136. ifstrtoupper($informat)== "text" )  
  137. return($this->settext($templatelineout));  
  138. else ifstrtoupper($informat)== "html" )  
  139. return($this->sethtml($templatelineout));  
  140. return false;  
  141. }  
  142. /*****************************************  
  143. 函数 getrandomboundary($offset) 返回一个随机的边界值  
  144. 参数 $offset 为整数 – 用于多管道的调用 返回一个md5()编码的字串  
  145. ****************************************/  
  146. function getrandomboundary($offset = 0){  
  147. //--随机数生成  
  148. srand(time()+$offset);  
  149. //--返回 md5 编码的32位 字符长度的字串  
  150. return ( "----".(md5(rand()))); }  
  151. /********************************************  
  152. 函数: getcontenttype($infilename)用于判断附件的类型  
  153. **********************************************/  
  154. function getcontenttype($infilename){  
  155. //--去除路径  
  156. $infilename = basename($infilename);  
  157. //--去除没有扩展名的文件  
  158. if(strrchr($infilename".") == false){  
  159. return "application/octet-stream";  
  160. }  
  161. //--提区扩展名并进行判断  
  162. $extension = strrchr($infilename".");  
  163. switch($extension){  
  164. case ".gif"return "image/gif";  
  165. case ".gz"return "application/x-gzip";  
  166. case ".htm"return "text/html";  
  167. case ".html"return "text/html";  
  168. case ".jpg"return "image/jpeg";  
  169. case ".tar"return "application/x-tar";  
  170. case ".txt"return "text/plain";  
  171. case ".zip"return "application/zip";  
  172. defaultreturn "application/octet-stream";  
  173. }  
  174. return "application/octet-stream";  
  175. }  
  176. /**********************************************  
  177. 函数formattextheader把文本内容加上text的文件头  
  178. *****************************************************/  
  179. function formattextheader(){ $outtextheader = "";  
  180. $outtextheader .= "content-type: text/plain;  
  181. charset=us-asciin";  
  182. $outtextheader .= "content-transfer-encoding: 7bitnn";  
  183. $outtextheader .= $this->mailtext. "n";  
  184. return $outtextheader;  
  185. /************************************************  
  186. 函数formathtmlheader()把邮件主体内容加上html的文件头  
  187. ******************************************/  
  188. function formathtmlheader(){  
  189. $outhtmlheader = "";  
  190. $outhtmlheader .= "content-type: text/html;  
  191. charset=us-asciin";  
  192. $outhtmlheader .= "content-transfer-encoding: 7bitnn";  
  193. $outhtmlheader .= $this->mailhtml. "n";  
  194. return $outhtmlheader;  
  195. }  
  196. /**********************************  
  197. 函数 formatattachmentheader($infilelocation) 把邮件中的附件标识出来  
  198. ********************************/  
  199. function formatattachmentheader($infilelocation){  
  200. $outattachmentheader = "";  
  201. //--用上面的函数getcontenttype($infilelocation)得出附件类型  
  202. $contenttype = $this->getcontenttype($infilelocation);  
  203. //--如果附件是文本型则用标准的7位编码  
  204. if(ereg"text",$contenttype)){  
  205. $outattachmentheader .= "content-type: ".$contenttype";n";  
  206. $outattachmentheader .= ' name="'.basename($infilelocation). '"'"n";  
  207. $outattachmentheader .= "content-transfer-encoding: 7bitn";  
  208. $outattachmentheader .= "content-disposition: attachment;n";  
  209. $outattachmentheader .= ' filename="'.basename($infilelocation). '"'"nn";  
  210. $textfile = fopen($infilelocation"r");  
  211. while(!feof($textfile)){  
  212. $outattachmentheader .= fgets($textfile,1000);  
  213. }  
  214. //--关闭文件 fclose($textfile);  
  215. $outattachmentheader .= "n";  
  216. }  
  217. //--非文本格式则用64位进行编码  
  218. else$outattachmentheader .= "content-type: ".$contenttype";n";  
  219. $outattachmentheader .= ' name="'.basename($infilelocation). '"'"n";  
  220. $outattachmentheader .= "content-transfer-encoding: base64n";  
  221. $outattachmentheader .= "content-disposition: attachment;n";  
  222. $outattachmentheader .= ' filename="'.basename($infilelocation). '"'"nn";  
  223. //--调用外部命令uuencode进行编码  
  224. exec"uuencode -m $infilelocation nothing_out",$returnarray);  
  225. for ($i = 1; $i<(count($returnarray)); $i++){  
  226. $outattachmentheader .= $returnarray[$i]. "n";  
  227. }  
  228. return $outattachmentheader;  
  229. }  
  230. /******************************  
  231. 函数 send()用于发送邮件,发送成功返回值为true  
  232. ************************************/  
  233. function send(){  
  234. //--设置邮件头为空  
  235. $mailheader = "";  
  236. //--添加抄送人  
  237. if($this->mailcc != "")  
  238. $mailheader .= "cc: ".$this->mailcc. "n";  
  239. //--添加秘密抄送人  
  240. if($this->mailbcc != "")  
  241. $mailheader .= "bcc: ".$this->mailbcc. "n";  
  242. //--添加发件人  
  243. if($this->mailfrom != "")  
  244. $mailheader .= "from: ".$this->mailfrom. "n";  
  245. //---------------------------邮件格式------------------------------  
  246. //--文本格式  
  247. if($this->mailtext != "" && $this->mailhtml == "" && $this->mailattachments == ""){  
  248. return mail($this->mailto,$this->mailsubject,$this->mailtext,$mailheader);  
  249. }  
  250. //--html或text格式  
  251. else if($this->mailtext != "" && $this->mailhtml != "" && $this->mailattachments == ""){  
  252. $bodyboundary = $this->getrandomboundary();  
  253. $textheader = $this->formattextheader();  
  254. $htmlheader = $this->formathtmlheader();  
  255. //--设置 mime-版本  
  256. $mailheader .= "mime-version: 1.0n";  
  257. $mailheader .= "content-type: multipart/alternative;n";  
  258. $mailheader .= ' boundary="'.$bodyboundary'"';  
  259. $mailheader .= "nnn";  
  260. //--添加邮件主体和边界  
  261. $mailheader .= "--".$bodyboundary"n";  
  262. $mailheader .= $textheader;  
  263. $mailheader .= "--".$bodyboundary"n";  
  264. //--添加html标签  
  265. $mailheader .= $htmlheader;  
  266. $mailheader .= "n--".$bodyboundary"--";  
  267. //--发送邮件  
  268. return mail($this->mailto,$this->mailsubject, "",$mailheader);  
  269. }  
  270. //--文本加html加附件  
  271. else if($this->mailtext != "" && $this->mailhtml != "" && $this->mailattachments != ""){  
  272. $attachmentboundary = $this->getrandomboundary();  
  273. $mailheader .= "content-type: multipart/mixed;n";  
  274. $mailheader .= ' boundary="'.$attachmentboundary'"'"nn";  
  275. $mailheader .= "this is a multi-part message in mime format.n";  
  276. $mailheader .= "--".$attachmentboundary"n";  
  277. $bodyboundary = $this->getrandomboundary(1);  
  278. $textheader = $this->formattextheader();  
  279. $htmlheader = $this->formathtmlheader();  
  280. $mailheader .= "mime-version: 1.0n";  
  281. $mailheader .= "content-type: multipart/alternative;n";  
  282. $mailheader .= ' boundary="'.$bodyboundary'"';  
  283. $mailheader .= "nnn";  
  284. $mailheader .= "--".$bodyboundary"n";  
  285. $mailheader .= $textheader;  
  286. $mailheader .= "--".$bodyboundary"n";  
  287. $mailheader .= $htmlheader;  
  288. $mailheader .= "n--".$bodyboundary"--";  
  289. //--获取附件值  
  290. $attachmentarray = explode",",$this->mailattachments);  
  291. //--根据附件的个数进行循环  
  292. for($i=0;$i<count($attachmentarray);$i++){  
  293. //--分割 $mailheader .= "n--".$attachmentboundary. "n";  
  294. //--附件信息  
  295. $mailheader .= $this->formatattachmentheader($attachmentarray[$i]); 
  296. }  
  297. $mailheader .= "--".$attachmentboundary"--";  
  298. return mail($this->mailto,$this->mailsubject, "",$mailheader);  
  299. }  
  300. return false;  
  301. }  
  302. }  
  303. ?> 

使用方法:

  1. include "email.class" 
  2. $mail->setto("a@a.com"); //收件人  
  3. $mail-> setcc("b@b.com,[url=mailto:c@c.com]c@c.com[/url]"); //抄送  
  4. $mail-> setcc("d@b.com,[url=mailto:e@c.com]e@c.com[/url]"); //秘密抄送  
  5. $mail->setfrom("[url=mailto:f@f.com]f@f.com[/url]");//发件人  
  6. $mail->setsubject("主题") ; //主题  
  7. $mail->settext("文本格式") ;//发送文本格式也可以是变量  
  8. $mail->sethtml("html格式") ;//发送html格式也可以是变量  
  9. $mail->setattachments("c:a.jpg") ;//添加附件,需表明路径  
  10. $mail->send(); //发送邮件 
  11. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容