标签:
第一次使用ThinkPHP编写”找回密码“功能,按照网上的DEMO做完后,试了好几个邮箱都不管用,试了半天终于成功了,以下是我的实现过程:
第一步:准备PHPMailer
首先下载PHPMailer扩展,谷歌一下就有了。然后将下载的PHPMailer整个文件夹放到ThinkPHP文件夹里面的Vendor目录下。
第二步:修改配置文件
向conf.php配置文件中添加以下内容:
‘THINK_EMAIL‘ => array( ‘SMTP_HOST‘ => ‘smtp.sina.com‘, //SMTP服务器 ‘SMTP_PORT‘ => ‘25‘, //SMTP服务器端口 ‘SMTP_USER‘ => ‘xxx@sina.com‘, //SMTP服务器用户名 ‘SMTP_PASS‘ => ‘password‘, //SMTP服务器密码 ‘FROM_EMAIL‘ => ‘xxx@sina.com‘, //发件人EMAIL ‘FROM_NAME‘ => ‘name‘, //发件人名称 ‘REPLY_EMAIL‘ => ‘‘, //回复EMAIL(留空则为发件人EMAIL) ‘REPLY_NAME‘ => ‘‘, //回复名称(留空则为发件人名称) )
目前只有新浪邮箱测试成功,并且邮箱须开启SMTP服务,新浪邮箱SMTP端口为25。
注意:新版ThinkPHP须把common.php改为function.php。
接着将以下函数添加到到function.php文件中。
/** * 系统邮件发送函数 * @param string $to 接收邮件者邮箱 * @param string $name 接收邮件者名称 * @param string $subject 邮件主题 * @param string $body 邮件内容 * @param string $attachment 附件列表 * @return boolean */ function think_send_mail($to, $name, $subject = ‘‘, $body = ‘‘, $attachment = null){ $config = C(‘THINK_EMAIL‘); vendor(‘PHPMailer.class#phpmailer‘); //从PHPMailer目录导class.phpmailer.php类文件 $mail = new \PHPMailer(); //PHPMailer对象,注意要添加‘ \ ‘ $mail->CharSet = ‘UTF-8‘; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码 $mail->IsSMTP(); // 设定使用SMTP服务 $mail->SMTPDebug = 0; // 关闭SMTP调试功能 // 1 = errors and messages // 2 = messages only $mail->SMTPAuth = true; // 启用 SMTP 验证功能 $mail->SMTPSecure = ‘tls‘; // 使用安全协议,新浪邮箱使用‘tls‘安全协议,有些邮箱为‘ssl‘协议 $mail->Host = $config[‘SMTP_HOST‘]; // SMTP 服务器 $mail->Port = $config[‘SMTP_PORT‘]; // SMTP服务器的端口号 $mail->Username = $config[‘SMTP_USER‘]; // SMTP服务器用户名 $mail->Password = $config[‘SMTP_PASS‘]; // SMTP服务器密码 $mail->SetFrom($config[‘FROM_EMAIL‘], $config[‘FROM_NAME‘]); $replyEmail = $config[‘REPLY_EMAIL‘]?$config[‘REPLY_EMAIL‘]:$config[‘FROM_EMAIL‘]; $replyName = $config[‘REPLY_NAME‘]?$config[‘REPLY_NAME‘]:$config[‘FROM_NAME‘]; $mail->AddReplyTo($replyEmail, $replyName); $mail->Subject = $subject; $mail->AltBody = "为了查看该邮件,请切换到支持 HTML 的邮件客户端"; $mail->MsgHTML($body); $mail->AddAddress($to, $name); if(is_array($attachment)){ // 添加附件 foreach ($attachment as $file){ is_file($file) && $mail->AddAttachment($file); } } return $mail->Send() ? true : $mail->ErrorInfo; }
$r = think_send_mail(‘要发送的邮箱‘,‘发送人名称,即你的名称‘,‘文件标题‘,‘邮件内容‘);
php.ini中去掉extension=php_openssl.dll前面的分号
并将allow_url_fopen = Off 改为 allow_url_fopen = On
内容来源:http://www.zkh.esy.es/2016/08/10/Thinkphp使用PHPMailer发送邮件遇到的问题
标签:
原文地址:http://www.cnblogs.com/zkh101/p/5755197.html