phpmailer邮件类

<?php
/**
* 邮件类
* Enter description here ...
* @author df
* Mail::getMail()->sendMail();
*
*/
class Mail{

private static $__mail=null;//邮箱类对象
private $__PMAIL=NULL;
function __construct(){
require(‘class.phpmailer.php‘);
$this->__PMAIL=new PHPMailer();
$this->__PMAIL->IsSMTP();
$this->__PMAIL->Host= "smtp.163.com";
$this->__PMAIL->Username="";
$this->__PMAIL->Password="";
$this->__PMAIL->SMTPAuth=true;
$this->__PMAIL->From="";
}
public static function getMail(){
/*if(!self::$__mail){
self::$__mail=new Mail();
}
return self::$__mail;
*/
return new Mail();
}
/**
*
* Enter description here ...
* @param unknown_type $toAddress //收件人地址,多个可用,好分隔
* @param unknown_type $fromName //发件人名字
* @param unknown_type $title //标题
* @param unknown_type $content //内容
* @param unknown_type $isHTML //是否以HTML格式发送
* @param unknown_type $charset //编码
* @param unknown_type $replyto //收件人地址
* @param unknown_type $attachment //附件
*/
function sendMail($toAddress,$title=‘‘,$content=‘‘,$isHTML=TRUE,$charset=‘utf-8‘,$replyto=‘‘,$fromName=‘‘,$attachment=‘‘){
$this->__PMAIL->IsHTML($isHTML);
$this->__PMAIL->CharSet=$charset;
if(strstr($toAddress,‘,‘)){
$__list=explode(‘,‘, $toAddress);
foreach ($__list as $v){
$this->__PMAIL->AddAddress($v,$v);
}
}else{
$this->__PMAIL->AddAddress($toAddress,$toAddress);
}

$this->__PMAIL->FromName=$fromName;
$this->__PMAIL->Subject=$title;
$this->__PMAIL->Body=$content;
if($replyto){
$this->__PMAIL->AddReplyTo($replyto);
}
if($attachment){
$this->__PMAIL->AddAttachment($attachment,$attachment);
}
return $this->__PMAIL->Send();
}
}

时间: 2024-10-22 00:06:02

phpmailer邮件类的相关文章

PHPMailer邮件类使用错误分析

PHPMailer配置清单如下: require_once 'class.phpmailer.php'; $receiver = "; $mail =  new PHPMailer ( ); $mail->IsSMTP (); $mail->IsHTML ( true ); $mail->CharSet = "GB2312″; $mail->Encoding = "base64″; $mail->Host = 'mail.test.com'; $

ThinkPHP中使用PHPMailer邮件类

第一步.添加PHPMailer类库将下载后的文件解压,将PHPMail目录移动至ThinkPHP目录中的Vendor内.(请确保class.phpmailer.php文件就在ThinkPHP\Vendor\PHPMailer\class.phpmailer.php)第二步.添加发送邮件函数在项目目录中的Common文件夹中的common.php文件(如果没有请创建)添加如下代码: <?php /********** * 发送邮件 * **********/ function SendMail($

关于 PHPMailer 邮件发送类的使用心得(含多文件上传)

Is this important for send mail PHPMailer 核心文件 class.phpmailer.php class.phpmaileroauth.php class.phpmaileroauthgoogle.php class.pop3.php class.smtp.php get_oauth_token.php PHPMailerAutoload.php 在使用PHPMailer之前,首先查看PHP环境扩展中是否开启了socket 和openssl扩展,如若没有开

c++封装的发邮件类CSendMail

项目需要做发邮件的功能,在网上找了一下代码,比较出名的SMailer编译不过(把那个Base64的encode拉到MailSender中实现就能过,但我搞不懂原来出错的原因,就不想用),另外找到了一个CSendMail的实现类,可以用,但代码的风格不好,使用起来也不方便,所以我就参考(chao)这两个类,实现了一个比较简单的发邮件类.CSendMail类支持多个收件人,支持附件(多个). [原]:http://www.cnblogs.com/sixbeauty/p/3983525.html 上代

phpmailer邮件发送 错误 :SMTP Error: Could not authenticate.

phpmailer邮件发送  错误 :SMTP Error: Could not authenticate. 需要开启SMTP 解决方法:

C# 发邮件类可发送附件

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Net.Mail; namespace Ajax.发邮件 { public class GetMail { //MailAddress ds = new MailAddress("[email protected]"); // Send(ds, "[email protected]&

Android调用系统邮件类应用的正确实现方法

Android应用开发中,很多情况下免不了要调用手机上的邮件类应用,实现邮件发送的功能,这一般是通过调用系统已有的Intent来实现的.看到网上很多邮件发送都是调用action为android.content.Intent.ACTION_SEND的Intent来实现的,下面我们就来看下这种方式实现的效果如何. [使用Intent.ACTION_SEND方式] 具体的UI搭建我就不说了,很easy,直接看下发送的核心代码就行: String[] email = {"3802**[email pro

邮件类

public class MailUnit { public string smtp; public string from; public string pwd; public string to; public string title; public string body; public ArrayList paths; /// <summary> /// 发送邮件单元类 /// </summary> /// <param name="Psmtp"

发送邮件确认验证注册,修改别人邮件类

类库 require "class.phpmailer.php"; require "class.smtp.php"; class PHP_Mailer { protected $mail; public function __construct() { $mail = new PHPMailer; $mail->SMTPDebug = 3; $mail->isSMTP(); $mail->SMTPAuth = true; $mail->is