php 发送邮件代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-21 11:06:40 浏览: 评论:0
本文章是利用phpmailer来实现在线发送邮件功能的源码代码.
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>--邀请好友参加</title>
- <style type="text/css">
- <!--
- body {
- margin: 0px;
- padding: 0px;
- font-size: 12px;
- background-color: #CFCFCF;
- }
- input {
- line-height: 18px;
- height: 18px;
- border: 1px solid #CCCCCC;
- }
- img {
- border-top-width: 0px;
- border-right-width: 0px;
- border-bottom-width: 0px;
- border-left-width: 0px;
- }
- * {
- margin: 0px;
- padding: 0px;
- list-style-image: none;
- list-style-type: none;
- background-repeat: no-repeat;
- }
- td {
- line-height: 22px;
- font-size: 14px;
- font-weight: 700;
- color: #276662;
- }
- -->
- </style>
- </head>
- <body>
- <form action="#" method="post" name="form">
- <table border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="572" height="227" valign="top" background="img/mailfooterimg.gif"><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="70"> </td>
- </tr>
- <tr>
- <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><input type="text" value="http://111cn.net/" size="60" /></td>
- <td height="40"><a href="#"><img src="img/copy.gif" width="72" height="22" /></a></td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td height="28">好友姓名:
- <input type="text" size="22" />
-
- 邮箱地址:
- <input type="text" size="22" /> </td>
- </tr>
- <tr>
- <td height="28">好友姓名:
- <input type="text" size="22" />
-
- 邮箱地址:
- <input type="text" size="22" /> </td>
- </tr>
- <tr>
- <td height="28">好友姓名:
- <input type="text" size="22" />
-
- 邮箱地址:
- <input type="text" size="22" /> </td>
- </tr>
- <tr>
- <td height="28" align="right"><a href="#"><img src="img/sendbtn.gif" width="95" height="26" /></a></td>
- </tr>
- </table></td>
- </tr>
- </table>
- </form>
- </body>
- </html>
发送邮件处理功能页面mail.php
- <?
- require(dirname(__FILE__)."/mail/class.phpmailer.php"); //调用 phpmailer类型,如果没有phpmailer请点击这里下载phpmailer for php5/6 下载
- $array = array_unique(Get_value('mail',1));//去除重复的邮箱地址
- $mail = new PHPMailer();
- $count =0;
- $bad =0;
- $mail->IsSMTP(); // set mailer to use SMTP
- $mail->Host = "smtp.163.com"; // smtp1.example.com;smtp2.example.comspecify main and backup server
- $mail->SMTPAuth = true; // turn on SMTP authentication
- $mail->Username = "mailangel123"; // SMTP username
- $mail->Password = "*******"; // SMTP password
- $mail->From = "mailangel123@163.com";
- $mail->FromName = "你的好友来信";
- $MailBody = '内容'
- $mail->AddReplyTo("mailangel123@163.com", "澳优");
- $mail->AddAddress($tmpmail,'您好!');
- $mail->WordWrap = 50;
- $mail->CharSet="GB2312";
- //$mail->AddAttachment("/var/tmp/file.tar.gz");
- //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");
- $mail->IsHTML(true);
- $mail->Subject = "你的朋友邀请你一起合影!";
- $mail->Body = $MailBody;
- if(!$mail->Send())
- {
- $bad++;
- $mail->ClearAddresses();
- $mail->ClearAttachments();
- }
- OK就完成了哦。
- ?>
Tags: php 发送邮件
相关文章
- ·PHP 是什么?(2013-11-12)
- ·Php.ini文件位置在哪里 Php.ini文件找不到(2013-11-12)
- ·PHP 数据类型(2013-11-12)
- ·php 获取当前脚本的url(2013-11-12)
- ·php技术生成静态页面的实现(2013-11-13)
- ·缺陷月项目启动 披露PHP脚本语言漏洞(2013-11-13)
- ·在PHP中全面阻止SQL注入式攻击(2013-11-13)
- ·php生成随机密码的几种方法(2013-11-13)
- ·PHP中使用FCKeditor2.3.2配置(2013-11-13)
- ·如何使用PHP开发高效的WEB系统(2013-11-13)
- ·php:树形结构的算法(2013-11-13)
- ·php4和php5区别(2013-11-13)
- ·php数据库连接(2013-11-13)
- ·如何正确理解PHP的错误信息(2013-11-13)
- ·php页面漏洞分析及相关问题解决(2013-11-13)
- ·当在连接PHP时,抱怨一些数值没有定义参考?(2013-11-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)