thinkphp3.2+完美可用PHPMailer库

function sendMail($to, $title, $content) {
	 
	Vendor('PHPMailer.PHPMailerAutoload');
	$mail = new PHPMailer(); //实例化
	$mail->IsSMTP(); // 启用SMTP
	$mail->Host=C('MAIL_HOST'); //smtp服务器的名称(这里以QQ邮箱为例)
	$mail->SMTPAuth = C('MAIL_SMTPAUTH'); //启用smtp认证
	$mail->Username = C('MAIL_USERNAME'); //你的邮箱名
	$mail->Password = C('MAIL_PASSWORD') ; //邮箱密码
	$mail->From = C('MAIL_FROM'); //发件人地址(也就是你的邮箱地址)
	$mail->FromName = C('MAIL_FROMNAME'); //发件人姓名
	$mail->AddAddress($to,"尊敬的客户");
	$mail->WordWrap = 50; //设置每行字符长度
	$mail->IsHTML(C('MAIL_ISHTML')); // 是否HTML格式邮件
	$mail->CharSet=C('MAIL_CHARSET'); //设置邮件编码
	$mail->Subject =$title; //邮件主题
	$mail->Body = $content; //邮件内容
	$mail->AltBody = "这是一个纯文本的身体在非营利的HTML电子邮件客户端"; //邮件正文不支持HTML的备用显示
	//dump($mail);
	//exit;
	return($mail->Send());
}
public function add(){
 if(SendMail(I('post.mail'),I('post.title'),I('post.content')))
 $this->success('发送成功!');
 else
 $this->error('发送失败'); 
 //echo I('post.mail').I('post.title').I('post.content');
 }

<div id="main" class="main" style="min-height: 517px;">
	<div class="main-title cf">
		<h2>Phpmailer测试</h2><br /><br />
			 <form action="__CONTROLLER__/add" method="post" enctype="multipart/form-data">
			    	   邮箱: <input  type="text" id="mail" name="mail"/><br /><br />
			 		   标题: <input  type="text" id="title" name="title"/><br /><br />
			 		   内容: <input  type="text" id="content" name="content"/><br /><br />
			              <input class="button" type="submit" value="发送" style="margin: 0 auto;display: block;float:left;"/>
			 </form>
	</div>	

</div>

点击下载PHPMailer库   

转载请注明:PHP博客 » thinkphp3.2+完美可用PHPMailer库

你可能感兴趣的:(thinkphp3.2+完美可用PHPMailer库)