ThinkPHP邮件发送函数示例详解
  1. /**
  2. * 发送邮件
  3. * @param $tomail
  4. * @param $subject
  5. * @param $body
  6. * @param string $config
  7. * @return bool
  8. * @throws Exception
  9. * @throws phpmailerException
  10. * www.shouce.ren
  11. */
  12. function sendmail($tomail,$subject,$body){
  13. import('Common.ORG.PHPMailer.PHPMailer');
  14. $mail = new \Common\ORG\PHPMailer\PHPMailer();
  15. if(C('mail_type')){
  16. $mail->IsSMTP();
  17. }elseif(C('mail_type')==2){
  18. $mail->IsMail();
  19. }else{
  20. if(C('sendmailpath')){
  21. $mail->Sendmail = C('mail_sendmail');
  22. }else{
  23. $mail->Sendmail =ini_get('sendmail_path');
  24. }
  25. $mail->IsSendmail();
  26. }
  27. if(C('mail_auth')){
  28. $mail->SMTPAuth = true; // 开启SMTP认证
  29. }else{
  30. $mail->SMTPAuth = false; // 开启SMTP认证
  31. }
  32. $mail->CharSet='utf-8';
  33. $mail->SMTPDebug  = false;        // 改为2可以开启调试
  34. $mail->SMTPAuth   = true;
  35. $mail->Host = C('mail_server');      // GMAIL的SMTP
  36. $mail->Port = C('mail_port');    // GMAIL的SMTP端口号
  37. $mail->Username = C('mail_user'); // GMAIL用户名,必须以@gmail结尾
  38. $mail->Password = C('mail_password'); // GMAIL密码
  39. $mail->SetFrom(C('mail_from'), C('site_name'));     //发送者邮箱
  40. $mail->AddAddress($tomail);
  41. $mail->IsHTML(true); // 以HTML发送
  42. $mail->Subject = $subject;
  43. $mail->Body = $body;
  44. if(!$mail->Send())
  45. {
  46. return false;
  47. }else{
  48. return true;
  49. }
  50. }

ThinkPHP邮件发送函数示例的更多相关文章

  1. ThinkPHP邮件发送S(Smtp + Mail + phpmailer)

    三种邮件发送介绍:(Smtp,Mail以及phpmailer)ThinkPhp 框架下开发. 邮件发送配置先前准备(用该账号做测试用):(这里用新浪邮箱服务器)将自己的新浪邮箱开通 POP3/SMTP ...

  2. thinkphp 邮件发送

    最近项目上要求,要做个邮件发送的功能,因为用到的框架是ThinkPHP,于是就自己整理一下. 引入class.phpmailer.php,大家可以去这个链接去下载: http://pan.baidu. ...

  3. VB.NET的一个邮件发送函数

    ''' <summary> ''' VB.NET邮件发送程序 ''' 还没用在别的服务器,不晓得能不能行,慎用! ''' </summary> ''' <param na ...

  4. php 邮件发送利器 PHPMailer

    php 自带的邮件发送函数已经弱到不能用了. PHPMailer非常的强大. 绝对是php里必须使用的程序. 下载地址: https://github.com/Synchro/PHPMailer 只要 ...

  5. tp 邮件发送

    1.需要phpmail邮件发送包, 2.邮件发送函数function sendMail($to, $title, $content){ require_once('./PHPMailer_v5.1/c ...

  6. SWAKS伪造邮件发送

    一.SWAKS介绍 swaks(SWiss Army Knife Smtp)SMTP瑞士军刀Swaks是由John Jetmore编写和维护的一种功能强大,灵活,可脚本化,面向事务的SMTP测试工具. ...

  7. thinkphp 整合 swiftmailer 实现邮件发送

    thinkphp swiftmailer(phpmailer) 文件夹结构 图 1 swiftmailer-phpmailer 将swiftmailer整合到thinkphp中.如上图 1 我下载的版 ...

  8. Android Java使用JavaMail API发送和接收邮件的代码示例

    JavaMail是Oracle甲骨文开发的Java邮件类API,支持多种邮件协议,这里我们就来看一下Java使用JavaMail API发送和接收邮件的代码示例 使用Javamail发送邮件,必需的j ...

  9. 【Thinkphp 5】 整合邮箱类 phpmailer实现邮件发送

    第一步:下载phpmailer文件,主要用到的文件只有箭头指向的两个,thinkphp5中,把class.phpmailer.php改成了phpmailer.php 第二步: 将phpmailer文件 ...

随机推荐

  1. [CareerCup] 7.2 Ants on Polygon 多边形上的蚂蚁

    7.2 There are three ants on different vertices of a triangle. What is the probability of collision ( ...

  2. [CareerCup] 11.7 Tower of People in Circus 马戏团的人塔

    11.7 A circus is designing a tower routine consisting of people standing atop one another's shoulder ...

  3. LeetCode:Construct Binary Tree from Inorder and Postorder Traversal,Construct Binary Tree from Preorder and Inorder Traversal

    LeetCode:Construct Binary Tree from Inorder and Postorder Traversal Given inorder and postorder trav ...

  4. 如何启动一个已经创建的docker 容器,并进入SHELL 对其操作

    腾讯云使用自己的docker镜像安装后无法启动,下边这个亲测是可用的 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A ...

  5. CNN 手写数字识别

    1. 知识点准备 在了解 CNN 网络神经之前有两个概念要理解,第一是二维图像上卷积的概念,第二是 pooling 的概念. a. 卷积 关于卷积的概念和细节可以参考这里,卷积运算有两个非常重要特性, ...

  6. AngularJS开发指南3:Angular主要组成部分以及如何协同工作

    AngularJS的主要组成部分是: 启动(startup) - 展示“hello world!” 执行期(runtime) - AngularJS 执行期概览 作用域(scope) - 视图和控制器 ...

  7. Source Tree for MAC1.6

    Atlassian ID has become the new Atlassian Account. Read more about it here. After some great communi ...

  8. 阿里百川IMSDK--自定义群聊界面

    // 获取群对象 YWTribe *tribe = [self.tribesArray objectAtIndex:indexPath.row]; // 发起群聊 UIViewController * ...

  9. Linux CentOS6.5下编译安装MySQL 5.6.16【给力详细教程】

    一.编译安装MySQL前的准备工作 安装编译源码所需的工具和库 yum install gcc gcc-c++ ncurses-devel perl 安装cmake,从http://www.cmake ...

  10. 安装xampp二三事

    1.chrome 找不到页面时会自动跳转到hao123 安装完chrome后,想测试下localhost,结果找不到页面,当然正常的显示是“该页面无法显示”才对,可恨啊,总是直接转到hao123页面上 ...