首页 > php教程 > php手册 > 正文

php 发送邮件代码

php中文网
发布: 2016-05-25 16:49:30
原创
1778人浏览过

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

<!DOCTYPE html> 
<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=http://pic2.phprm.com/2014/01/21/mailfooterimg.jpg
  <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="#">@@##@@</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="#">@@##@@</a></td> 
  </tr> 
</table></td> 
  </tr> 
</table> 
</form> 
</body> 
</html>
登录后复制

 

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

<?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就完成了哦。 

 

立即学习PHP免费学习笔记(深入)”;

MarsX
MarsX

AI驱动快速构建App,低代码无代码开发,改变软件开发的游戏规则

MarsX 181
查看详情 MarsX


教程链接:

随意转载~但请保留教程地址★

php 发送邮件代码 php 发送邮件代码
相关标签:
php
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号