加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHPMailer安装方法及简单实例

发布时间:2020-12-13 05:29:18 所属栏目:PHP教程 来源:网络整理
导读:打开你电脑里的PHP.INI文件,找到如下位置,添加红线部分的内容,路径就是你PHPMailer存放的位置: IMG alt=attachments/200611/29_150901_phpmailer.jpg src="http://www.songzi.org/blog/attachments/200611/29_150901_phpmailer.jpg"gt; 保存,重启apache

打开你电脑里的PHP.INI文件,找到如下位置,添加红线部分的内容,路径就是你PHPMailer存放的位置:

<IMG alt=attachments/200611/29_150901_phpmailer.jpg src="http://www.songzi.org/blog/attachments/200611/29_150901_phpmailer.jpg"&gt;

保存,重启apache.
然后借用readme里的一个例子,稍微改一下就可以用了,由于只做最简单的测试,很多东西我注释掉了。
send.php
<div class="codetitle"><a style="CURSOR: pointer" data="97980" class="copybut" id="copybut97980" onclick="doCopy('code97980')"> 代码如下:<div class="codebody" id="code97980">
<?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 = "phpmailer@songzi.org"; // SMTP username
$mail->Password = "**"; // SMTP password
$mail->From = "phpmailer@songzi.org";
$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.

";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>

test.php
<div class="codetitle"><a style="CURSOR: pointer" data="89694" class="copybut" id="copybut89694" onclick="doCopy('code89694')"> 代码如下:<div class="codebody" id="code89694">


phpmailer Unit Test


请你输入<font color="#FF6666">收信的邮箱地址:
<form name="phpmailer" action="send.php" method="post">
<input type="hidden" name="submitted" value="1"/>
邮箱地址:


<input type="submit" value="发送"/>



(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读