/**<br>
* 系统邮件发送函数<br>
* @param string $to 接收邮件者邮箱<br>
* @param string $name 接收邮件者名称<br>
* @param string $subject 邮件主题 <br>
* @param string $body 邮件内容<br>
* @param string $attachment 附件列表<br>
* @return boolean <br>
*/<br>
function think_send_mail($to, $name, $subject = '', $body = '', $attachment = null){<br>
$config = C('THINK_EMAIL');<br>
vendor('PHPMailer.class#phpmailer'); //从PHPMailer目录导class.phpmailer.php类文件<br>
$mail = new PHPMailer(); //PHPMailer对象<br>
$mail->CharSet = 'UTF-8'; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码<br>
$mail->IsSMTP(); // 设定使用SMTP服务<br>
$mail->SMTPDebug = 0; // 关闭SMTP调试功能<br>
// 1 = errors and messages<br>
// 2 = messages only<br>
$mail->SMTPAuth = true; // 启用 SMTP 验证功能<br>
$mail->SMTPSecure = 'ssl'; // 使用安全协议<br>
$mail->Host = $config['SMTP_HOST']; // SMTP 服务器<br>
$mail->Port = $config['SMTP_PORT']; // SMTP服务器的端口号<br>
$mail->Username = $config['SMTP_USER']; // SMTP服务器用户名<br>
$mail->Password = $config['SMTP_PASS']; // SMTP服务器密码<br>
$mail->SetFrom($config['FROM_EMAIL'], $config['FROM_NAME']);<br>
$replyEmail = $config['REPLY_EMAIL']?$config['REPLY_EMAIL']:$config['FROM_EMAIL'];<br>
$replyName = $config['REPLY_NAME']?$config['REPLY_NAME']:$config['FROM_NAME'];<br>
$mail->AddReplyTo($replyEmail, $replyName);<br>
$mail->Subject = $subject;<br>
$mail->MsgHTML($body);<br>
$mail->AddAddress($to, $name);<br>
if(is_array($attachment)){ // 添加附件<br>
foreach ($attachment as $file){<br>
is_file($file) && $mail->AddAttachment($file);<br>
}<br>
}<br>
return $mail->Send() ? true : $mail->ErrorInfo;<br>
}
此函数只能在ThinkPHP中使用且需要phpmailer扩展的支持;phpmailer扩展的放置目录为 ThinkPHP/Extend/Vendor/PHPMailer/class.phpmailer.php
phpmail的下载地址:
https://code.google.com/a/apache-extras.org/p/phpmailer
使用此函数 必须在项目中加入以下配置项
//邮件配置<br>
'THINK_EMAIL' => array(<br>
'SMTP_HOST' => 'smtp.aaa.com', //SMTP服务器<br>
'SMTP_PORT' => '465', //SMTP服务器端口<br>
'SMTP_USER' => 'mail@aaa.com', //SMTP服务器用户名<br>
'SMTP_PASS' => 'password', //SMTP服务器密码<br>
'FROM_EMAIL' => 'mail@aaa.com', //发件人EMAIL<br>
'FROM_NAME' => 'ThinkPHP', //发件人名称<br>
'REPLY_EMAIL' => '', //回复EMAIL(留空则为发件人EMAIL)<br>
'REPLY_NAME' => '', //回复名称(留空则为发件人名称)<br>
),
AD:真正免费,域名+虚机+企业邮箱=0元

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1
Easy-to-use and free code editor
