正文开始 文件内容:[/upload/post_files/ThutAasEufH55W9a.txt](/upload/post_files/ThutAasEufH55W9a.txt)
使用方法
~~~
require_once("./include/class.phpmailer.php");
$mail = new PHPMailer();
$mail->SMTPDebug = 1;
$mail->isSMTP();
$mail->SMTPAuth=true;
$mail->Host = 'smtp.exmail.qq.com';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
$mail->CharSet = 'UTF-8';
$mail->FromName = "{$sys_email}";
$mail->Username ='system@qq163.com';
$mail->Password = 'meiyoumima';
$mail->From = 'system@qq163.com';
$mail->isHTML(true);
$mail->addAddress("{$sys_email}");
$mail->Subject = "New message from nb.com";
$mail->Body = $cont;
if(!$mail->send()){
echo '
'; var_dump($mail->ErrorInfo); die(); } $arr = array('status'=>0,'msg'=>'Thanks for your message. We will be in touch with you soon.'); $arr=json_encode($arr); echo $arr; ~~~ 正文结束 |
PHP接口(interface)和抽象类(abstract) | php 按公司名 地区 id 排序时的上一个下一个翻页算法 |