phpmailer发送gmail邮件实例详解

2015-01-24信息快讯网

本篇文章是对phpmailer发送gmail邮件实例进行了详细的分析介绍,需要的朋友参考下

<html>
<head>
<title>PHPMailer - SMTP (Gmail) basic test</title>
</head>
<body>
<?php
//error_reporting(E_ALL);
error_reporting(E_STRICT);
date_default_timezone_set('America/Toronto');
require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail             = new PHPMailer();
$body             = file_get_contents('contents.html');
$body             = eregi_replace("[\]",'',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "mail.gmail.com"; // SMTP server
$mail->SMTPDebug  = 2;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "***@gmail.com";  // GMAIL username
$mail->Password   = "***";            // GMAIL password
$mail->SetFrom('****@gmail.com', 'First Last');
$mail->AddReplyTo("***@gmail.com","First Last");
$mail->Subject    = "PHPMailer Test Subject via smtp (Gmail), basic";
$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "***@gmail.com";
$mail->AddAddress($address, "John Doe");
$mail->AddAttachment("images/phpmailer.gif");      // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}
?>
</body>
</html> 
jQuery中的RadioButton,input,CheckBox取值赋值实现代码
PHPMailer的主要功能特点和简单使用说明
PHP jQuery表单,带验证具体实现方法
smarty获得当前url的方法分享
smarty模板中拼接字符串的方法
PHP中$_FILES的使用方法及注意事项说明
php $_SERVER windows系统与linux系统下的区别说明
php根据isbn书号查询amazon网站上的图书信息的示例
php中的filesystem文件系统函数介绍及使用示例
codeigniter教程之上传视频并使用ffmpeg转flv示例
采用header定义为文件然后readfile下载(隐藏下载地址)
preg_match_all使用心得分享
PHP $_FILES中error返回值详解
PHP 利用Mail_MimeDecode类提取邮件信息示例
php多种形式发送邮件(mail qmail邮件系统 phpmailer类)
php mail to 配置详解
PHP mail()函数使用及配置方法
163的邮件用phpmailer发送(实例详解)
深入php中var_dump方法的使用详解
关于file_get_contents返回为空或函数不可用的解决方案
解析php框架codeigniter中如何使用框架的session
PHP中mb_convert_encoding与iconv函数的深入解析
关于PHP模板Smarty的初级使用方法以及心得分享
解析php中array_merge与array+array的区别
Function eregi is deprecated (解决方法)
解析smarty 截取字符串函数 truncate的用法介绍
探讨Smarty中如何获取数组的长度以及smarty调用php函数的详解
解析CodeIgniter自定义配置文件
使用Smarty 获取当前日期时间和格式化日期时间的方法详解
解析smarty模板中类似for的功能实现
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍
解决File size limit exceeded 错误的方法
深入for,while,foreach遍历时间比较的详解
探讨file_get_contents与curl效率及稳定性的分析
PHPMailer邮件发送的实现代码
使用php发送有附件的电子邮件-(PHPMailer使用的实例分析)
用Php编写注册后Email激活验证的实例代码
有关phpmailer的详细介绍及使用方法
©2014-2024 dbsqp.com