PHPMailer安装方法及简单实例
2015-01-24信息快讯网
PHPMailer是一个用PHP写的用于邮件发送的类,有点像Jmail,相信很多新手和我一样,开始很茫然,不知道怎么安装,查找了一下,发现这方面的资料真的少之又少,一个文章被转载千百次,一搜索全是同一个内容,真不知道说什么好,其实打开安装里的readme就一目了然了,闲话少说,安装其实很简单。
打开你电脑里的PHP.INI文件,找到如下位置,添加红线部分的内容,路径就是你PHPMailer存放的位置:保存,重启apache.
然后借用readme里的一个例子,稍微改一下就可以用了,由于只做最简单的测试,很多东西我注释掉了。
send.php
<?php require("class.phpmailer.php"); $mail = new PHPMailer(); $address = $_POST['address']; $mail->IsSMTP(); // set mailer to use SMTP $mail->Host = "mail.songzi.org"; // specify main and backup server $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "[email protected]"; // SMTP username $mail->Password = "******"; // SMTP password $mail->From = "[email protected]"; $mail->FromName = "songzi"; $mail->AddAddress("$address", ""); //$mail->AddAddress(""); // name is optional //$mail->AddReplyTo("", ""); //$mail->WordWrap = 50; // set word wrap to 50 characters //$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name //$mail->IsHTML(true); // set email format to HTML $mail->Subject = "PHPMailer测试邮件"; $mail->Body = "Hello,这是松子的测试邮件"; $mail->AltBody = "This is the body in plain text for non-HTML mail clients"; if(!$mail->Send()) { echo "Message could not be sent. <p>"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } echo "Message has been sent"; ?>
test.php
<html> <body> <h3>phpmailer Unit Test</h3> 请你输入<font color="#FF6666">收信</font>的邮箱地址: <form name="phpmailer" action="send.php" method="post"> <input type="hidden" name="submitted" value="1"/> 邮箱地址: <input type="text" size="50" name="address" /> <br/> <input type="submit" value="发送"/> </form> </body> </html>
php set_magic_quotes_runtime() 函数过时解决方法
PHP similar_text 字符串的相似性比较函数
用PHP将网址字符串转换成超链接(网址或email)
php imagecreatetruecolor 创建高清和透明图片代码小结
php getimagesize 上传图片的长度和宽度检测代码
php file_exists 检查文件或目录是否存在的函数
php is_file 判断给定文件名是否为一个正常的文件
mayfish 数据入库验证代码
PHP中冒号、endif、endwhile、endfor使用介绍
PHPMailer 中文使用说明小结
php google或baidu分页代码
phpmailer 中文使用说明(简易版)
PHP获取163、gmail、126等邮箱联系人地址【已测试2009.10.10】
PHP mail 通过Windows的SMTP发送邮件失败的解决方案
cmd下运行php脚本
php miniBB中文乱码问题解决方法
方便实用的PHP生成静态页面类(非smarty)第1/2页
smarty的保留变量问题
攻克CakePHP(PHP中的Ruby On Rails框架)图文介绍第1/2页
php preg_match_all结合str_replace替换内容中所有img
php email邮箱正则
Cannot modify header information错误解决方法
PHPMailer邮件类利用smtp.163.com发送邮件方法
PHP 得到根目录的 __FILE__ 常量
PHP_MySQL教程-第二天while循环与数据库操作第1/2页
main.php