email.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. //引入phpmail控件发送邮件
  3. require_once(LIBS."phpmailer/class.phpmailer.php");
  4. class email_lib
  5. {
  6. var $app;
  7. var $timeout = 5;
  8. var $smtp_server = "";
  9. var $smtp_port = 25;
  10. var $smtp_ssl = 0;
  11. var $smtp_user = "";
  12. var $smtp_pass = "";
  13. var $smtp_reply = "";
  14. var $smtp_admin = "";
  15. var $smtp_fromname = "Webmaster";
  16. var $smtp;
  17. function __construct()
  18. {
  19. $this->app = sys_init();
  20. }
  21. function email_lib()
  22. {
  23. $this->__construct();
  24. }
  25. //连接到email环境中
  26. function send_mail($sendto,$subject,$content,$user_name="")
  27. {
  28. if(!$sendto || !$subject || !$content)
  29. {
  30. return false;
  31. }
  32. //如果没有指定邮箱服务器
  33. if(!$this->app->sys_config["smtp_server"])
  34. {
  35. return false;
  36. }
  37. $this->smtp_server = $this->app->sys_config["smtp_server"];
  38. //设置邮件服务器端口
  39. if($this->app->sys_config["smtp_port"] && $this->app->sys_config["smtp_port"] != "25")
  40. {
  41. $this->smtp_port = $this->app->sys_config["smtp_port"];
  42. }
  43. //判断是否有启用SSL
  44. $this->smtp_ssl = $this->app->sys_config["smtp_ssl"];
  45. //判断是否有设置用户名
  46. if(!$this->app->sys_config["smtp_user"])
  47. {
  48. return false;
  49. }
  50. $this->smtp_user = $this->app->sys_config["smtp_user"];
  51. //判断是否有启用密码
  52. if(!$this->app->sys_config["smtp_pass"])
  53. {
  54. return false;
  55. }
  56. $this->smtp_pass = $this->app->sys_config["smtp_pass"];
  57. $this->smtp_reply = $this->app->sys_config["smtp_reply"];
  58. $this->smtp_admin = $this->app->sys_config["smtp_admin"];
  59. if(!$this->smtp_reply && !$this->smtp_admin)
  60. {
  61. return false;
  62. }
  63. $mail = new PHPMailer();
  64. $mail->CharSet = ($this->app->sys_config["smtp_charset"] == "gbk" && function_exists("iconv")) ? "gbk" : "utf8";
  65. $mail->IsSMTP();
  66. $mail->SMTPAuth = true;
  67. $mail->SMTPDebug = false;//是否启用调试
  68. $mail->IsHTML(true);
  69. $mail->Username = trim($this->smtp_user);
  70. $mail->Password = trim($this->smtp_pass);
  71. $mail->Host = trim($this->smtp_server);
  72. $mail->Port = $this->smtp_port;
  73. if($this->smtp_ssl)
  74. {
  75. $mail->SMTPSecure = 'ssl';
  76. }
  77. $mail->LE = "\r\n";
  78. $mail->Timeout = 5;
  79. //发件人
  80. $mail->From = $this->smtp_admin;
  81. $mail->FromName = $this->app->sys_config["smtp_fromname"] ? $this->app->sys_config["smtp_fromname"] : $this->smtp_fromname;
  82. if($mail->CharSet != "utf8")
  83. {
  84. $subject = $this->app->trans_lib->charset($subject,"UTF-8","GBK");
  85. $content = $this->app->trans_lib->charset($content,"UTF-8","GBK");
  86. $mail->FromName = $this->app->trans_lib->charset($mail->FromName,"UTF-8","GBK");
  87. }
  88. $mail->Subject = $subject;
  89. $mail->MsgHTML($content);
  90. $sendto_array = explode(";",$sendto);
  91. if(count($sendto_array)<2)
  92. {
  93. if(!$user_name)
  94. {
  95. $user_name = str_replace(strstr($sendto,"@"),"",$sendto);
  96. }
  97. $mail->AddAddress($sendto,$user_name);
  98. }
  99. else
  100. {
  101. foreach($sendto_array AS $key=>$value)
  102. {
  103. $v_name = str_replace(strstr($value,"@"),"",$value);
  104. $mail->AddAddress($value,$v_name);
  105. }
  106. }
  107. if($mail->Send())
  108. {
  109. return true;
  110. }
  111. else
  112. {
  113. return false;
  114. }
  115. }
  116. //注册,通知给客户,请参考getpass进行编写,注
  117. function reg($uid)
  118. {
  119. if(!$this->app->sys_config["smtp_reg"])
  120. {
  121. return true;
  122. }
  123. $this->app->load_model("user");
  124. $rs = $this->app->user_m->user_from_id($uid);
  125. $this->app->tpl->assign("rs",$rs);
  126. $content = $this->app->tpl->fetch("email/reg_content.".$this->app->tpl->ext);//邮件内容
  127. $subject = $this->app->tpl->fetch("email/reg_title.".$this->app->tpl->ext);//邮件标题
  128. $this->send_mail($this->app->sys_config["smtp_admin"],$subject,$content,$rs["username"]);
  129. return true;
  130. }
  131. function regInform($uid)
  132. {
  133. if(!$this->app->sys_config["smtp_reg"])
  134. {
  135. return true;
  136. }
  137. $this->app->load_model("user");
  138. $rs = $this->app->user_m->user_from_id($uid);
  139. $this->app->tpl->assign("rs",$rs);
  140. $content = $this->app->tpl->fetch("email/reg_contentinform.".$this->app->tpl->ext);//邮件内容
  141. $subject = $this->app->tpl->fetch("email/reg_titleinform.".$this->app->tpl->ext);//邮件标题
  142. $this->send_mail($this->app->sys_config["smtp_admin"],$subject,$content,$rs["username"]);
  143. return true;
  144. }
  145. }
  146. ?>