首页 后端开发 php教程 PHP支持发送HTML格式邮件的发送类

PHP支持发送HTML格式邮件的发送类

Jul 25, 2016 am 08:43 AM

  1. /**
  2. * 邮件发送类
  3. * 支持发送纯文本邮件和HTML格式的邮件
  4. * @example
  5. * $config = array(
  6. * "from" => "*****",
  7. * "to" => "***",
  8. * "subject" => "test",
  9. * "body" => "test",
  10. * "username" => "***",
  11. * "password" => "****",
  12. * "isHTML" => true
  13. * );
  14. *
  15. * $mail = new MySendMail();
  16. *
  17. * $mail->setServer("smtp.126.com");
  18. *
  19. * $mail->setMailInfo($config);
  20. * if(!$mail->sendMail()) {
  21. * echo $mail->error();
  22. * return 1;
  23. * }
  24. */
  25. class MySendMail{
  26. /**
  27. * @var 邮件传输代理用户名
  28. * @access private
  29. */
  30. private $_userName;
  31. /**
  32. * @var 邮件传输代理密码
  33. * @access private
  34. */
  35. private $_password;
  36. /**
  37. * @var 邮件传输代理服务器地址
  38. * @access protected
  39. */
  40. protected $_sendServer;
  41. /**
  42. * @var 邮件传输代理服务器端口
  43. * @access protected
  44. */
  45. protected $_port=25;
  46. /**
  47. * @var 发件人
  48. * @access protected
  49. */
  50. protected $_from;
  51. /**
  52. * @var 收件人
  53. * @access protected
  54. */
  55. protected $_to;
  56. /**
  57. * @var 主题
  58. * @access protected
  59. */
  60. protected $_subject;
  61. /**
  62. * @var 邮件正文
  63. * @access protected
  64. */
  65. protected $_body;
  66. /**
  67. * @var 是否是HTML格式的邮件
  68. * @access protected
  69. */
  70. protected $_isHTML=true;
  71. /**
  72. * @var socket资源
  73. * @access protected
  74. */
  75. protected $_socket;
  76. /**
  77. * @var 错误信息
  78. * @access protected
  79. */
  80. protected $_errorMessage;
  81. public function __construct($from="", $to="", $subject="", $body="", $server="", $username="", $password="",$isHTML="", $port="") {
  82. if(!empty($from)){
  83. $this->_from = $from;
  84. }
  85. if(!empty($to)){
  86. $this->_to = $to;
  87. }
  88. if(!empty($subject)){
  89. $this->_subject = $subject;
  90. }
  91. if(!empty($body)){
  92. $this->_body = $body;
  93. }
  94. if(!empty($isHTML)){
  95. $this->_isHTML = $isHTML;
  96. }
  97. if(!empty($server)){
  98. $this->_sendServer = $server;
  99. }
  100. if(!empty($port)){
  101. $this->_port = $port;
  102. }
  103. if(!empty($username)){
  104. $this->_userName = $username;
  105. }
  106. if(!empty($password)){
  107. $this->_password = $password;
  108. }
  109. }
  110. /**
  111. * 设置邮件传输代理
  112. * @param string $server 代理服务器的ip或者域名
  113. * @param int $port 代理服务器的端口,smtp默认25号端口
  114. * @param int $localPort 本地端口
  115. * @return boolean
  116. */
  117. public function setServer($server, $port=25) {
  118. if(!isset($server) || empty($server) || !is_string($server)) {
  119. $this->_errorMessage = "first one is an invalid parameter";
  120. return false;
  121. }
  122. if(!is_numeric($port)){
  123. $this->_errorMessage = "first two is an invalid parameter";
  124. return false;
  125. }
  126. $this->_sendServer = $server;
  127. $this->_port = $port;
  128. return true;
  129. }
  130. /**
  131. * 设置邮件
  132. * @access public
  133. * @param array $config 邮件配置信息
  134. * 包含邮件发送人、接收人、主题、内容、邮件传输代理的验证信息
  135. * @return boolean
  136. */
  137. public function setMailInfo($config) {
  138. if(!is_array($config) || count($config) $this->_errorMessage = "parameters are required";
  139. return false;
  140. }
  141. $this->_from = $config['from'];
  142. $this->_to = $config['to'];
  143. $this->_subject = $config['subject'];
  144. $this->_body = $config['body'];
  145. $this->_userName = $config['username'];
  146. $this->_password = $config['password'];
  147. if(isset($config['isHTML'])){
  148. $this->_isHTML = $config['isHTML'];
  149. }
  150. return true;
  151. }
  152. /**
  153. * 发送邮件
  154. * @access public
  155. * @return boolean
  156. */
  157. public function sendMail() {
  158. $command = $this->getCommand();
  159. $this->socket();
  160. foreach ($command as $value) {
  161. if($this->sendCommand($value[0], $value[1])) {
  162. continue;
  163. }
  164. else{
  165. return false;
  166. }
  167. }
  168. $this->close(); //其实这里也没必要关闭,smtp命令:QUIT发出之后,服务器就关闭了连接,本地的socket资源会自动释放
  169. echo 'Mail OK!';
  170. return true;
  171. }
  172. /**
  173. * 返回错误信息
  174. * @return string
  175. */
  176. public function error(){
  177. if(!isset($this->_errorMessage)) {
  178. $this->_errorMessage = "";
  179. }
  180. return $this->_errorMessage;
  181. }
  182. /**
  183. * 返回mail命令
  184. * @access protected
  185. * @return array
  186. */
  187. protected function getCommand() {
  188. if($this->_isHTML) {
  189. $mail = "MIME-Version:1.0\r\n";
  190. $mail .= "Content-type:text/html;charset=utf-8\r\n";
  191. $mail .= "FROM:test_from . ">\r\n";
  192. $mail .= "TO:_to . ">\r\n";
  193. $mail .= "Subject:" . $this->_subject ."\r\n\r\n";
  194. $mail .= $this->_body . "\r\n.\r\n";
  195. }
  196. else{
  197. $mail = "FROM:test_from . ">\r\n";
  198. $mail .= "TO:_to . ">\r\n";
  199. $mail .= "Subject:" . $this->_subject ."\r\n\r\n";
  200. $mail .= $this->_body . "\r\n.\r\n";
  201. }
  202. $command = array(
  203. array("HELO sendmail\r\n", 250),
  204. array("AUTH LOGIN\r\n", 334),
  205. array(base64_encode($this->_userName) . "\r\n", 334),
  206. array(base64_encode($this->_password) . "\r\n", 235),
  207. array("MAIL FROM:_from . ">\r\n", 250),
  208. array("RCPT TO:_to . ">\r\n", 250),
  209. array("DATA\r\n", 354),
  210. array($mail, 250),
  211. array("QUIT\r\n", 221)
  212. );
  213. return $command;
  214. }
  215. /**
  216. * @access protected
  217. * @param string $command 发送到服务器的smtp命令
  218. * @param int $code 期望服务器返回的响应吗
  219. * @param boolean
  220. */
  221. protected function sendCommand($command, $code) {
  222. echo 'Send command:' . $command . ',expected code:' . $code . '
    ';
  223. //发送命令给服务器
  224. try{
  225. if(socket_write($this->_socket, $command, strlen($command))){
  226. //读取服务器返回
  227. $data = trim(socket_read($this->_socket, 1024));
  228. echo 'response:' . $data . '

    ';
  229. if($data) {
  230. $pattern = "/^".$code."/";
  231. if(preg_match($pattern, $data)) {
  232. return true;
  233. }
  234. else{
  235. $this->_errorMessage = "Error:" . $data . "|**| command:";
  236. return false;
  237. }
  238. }
  239. else{
  240. $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
  241. return false;
  242. }
  243. }
  244. else{
  245. $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
  246. return false;
  247. }
  248. }catch(Exception $e) {
  249. $this->_errorMessage = "Error:" . $e->getMessage();
  250. }
  251. }
  252. /**
  253. * 建立到服务器的网络连接
  254. * @access private
  255. * @return boolean
  256. */
  257. private function socket() {
  258. if(!function_exists("socket_create")) {
  259. $this->_errorMessage = "extension php-sockets must be enabled";
  260. return false;
  261. }
  262. //创建socket资源
  263. $this->_socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
  264. if(!$this->_socket) {
  265. $this->_errorMessage = socket_strerror(socket_last_error());
  266. return false;
  267. }
  268. //连接服务器
  269. if(!socket_connect($this->_socket, $this->_sendServer, $this->_port)) {
  270. $this->_errorMessage = socket_strerror(socket_last_error());
  271. return false;
  272. }
  273. socket_read($this->_socket, 1024);
  274. return true;
  275. }
  276. /**
  277. * 关闭socket
  278. * @access private
  279. * @return boolean
  280. */
  281. private function close() {
  282. if(isset($this->_socket) && is_object($this->_socket)) {
  283. $this->_socket->close();
  284. return true;
  285. }
  286. $this->_errorMessage = "no resource can to be close";
  287. return false;
  288. }
  289. }
  290. /**************************** Test ***********************************/
  291. $config = array(
  292. "from" => "********@163.com",
  293. "to" => "******@163.com",
  294. "subject" => "test",
  295. "body" => "test",
  296. "username" => "******",
  297. "password" => "password",
  298. );
  299. $mail = new MySendMail();
  300. $mail->setServer("smtp.163.com");
  301. $mail->setMailInfo($config);
  302. if(!$mail->sendMail()){
  303. echo $mail->error();
  304. return 1;
  305. }
复制代码

PHP, HTML


本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

在Laravel中使用Flash会话数据 在Laravel中使用Flash会话数据 Mar 12, 2025 pm 05:08 PM

Laravel使用其直观的闪存方法简化了处理临时会话数据。这非常适合在您的应用程序中显示简短的消息,警报或通知。 默认情况下,数据仅针对后续请求: $请求 -

php中的卷曲:如何在REST API中使用PHP卷曲扩展 php中的卷曲:如何在REST API中使用PHP卷曲扩展 Mar 14, 2025 am 11:42 AM

PHP客户端URL(curl)扩展是开发人员的强大工具,可以与远程服务器和REST API无缝交互。通过利用Libcurl(备受尊敬的多协议文件传输库),PHP curl促进了有效的执行

简化的HTTP响应在Laravel测试中模拟了 简化的HTTP响应在Laravel测试中模拟了 Mar 12, 2025 pm 05:09 PM

Laravel 提供简洁的 HTTP 响应模拟语法,简化了 HTTP 交互测试。这种方法显着减少了代码冗余,同时使您的测试模拟更直观。 基本实现提供了多种响应类型快捷方式: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

在Codecanyon上的12个最佳PHP聊天脚本 在Codecanyon上的12个最佳PHP聊天脚本 Mar 13, 2025 pm 12:08 PM

您是否想为客户最紧迫的问题提供实时的即时解决方案? 实时聊天使您可以与客户进行实时对话,并立即解决他们的问题。它允许您为您的自定义提供更快的服务

PHP记录:PHP日志分析的最佳实践 PHP记录:PHP日志分析的最佳实践 Mar 10, 2025 pm 02:32 PM

PHP日志记录对于监视和调试Web应用程序以及捕获关键事件,错误和运行时行为至关重要。它为系统性能提供了宝贵的见解,有助于识别问题并支持更快的故障排除

解释PHP中晚期静态结合的概念。 解释PHP中晚期静态结合的概念。 Mar 21, 2025 pm 01:33 PM

文章讨论了PHP 5.3中引入的PHP中的晚期静态结合(LSB),从而允许静态方法的运行时分辨率调用以获得更灵活的继承。 LSB的实用应用和潜在的触摸

自定义/扩展框架:如何添加自定义功能。 自定义/扩展框架:如何添加自定义功能。 Mar 28, 2025 pm 05:12 PM

本文讨论了将自定义功能添加到框架上,专注于理解体系结构,识别扩展点以及集成和调试的最佳实践。

See all articles