心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Smtp.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年3月21日
  7. * 邮件发送类
  8. */
  9. namespace core\basic;
  10. class Smtp
  11. {
  12. // 邮件传输代理服务器地址
  13. protected $sendServer;
  14. // 邮件传输代理服务器端口
  15. protected $port;
  16. // 是否是安全连接
  17. protected $isSecurity;
  18. // 邮件传输代理用户名
  19. protected $userName;
  20. // 邮件传输代理密码
  21. protected $password;
  22. // 发件人
  23. protected $from;
  24. // 收件人
  25. protected $to = array();
  26. // 抄送
  27. protected $cc = array();
  28. // 秘密抄送
  29. protected $bcc = array();
  30. // 主题
  31. protected $subject;
  32. // 邮件正文
  33. protected $body;
  34. // 附件
  35. protected $attachment = array();
  36. // 调试模式
  37. protected $debug;
  38. // 错误信息
  39. protected $errorMessage;
  40. // 资源句柄
  41. protected $socket;
  42. /**
  43. * 设置邮件传输代理,默认为安全链接
  44. *
  45. * @param string $server
  46. * 代理服务器的ip或者域名
  47. * @param string $username
  48. * 认证账号
  49. * @param string $password
  50. * 认证密码
  51. * @param int $port
  52. * 代理服务器的端口,smtp默认25号端口
  53. * @param boolean $isSecurity
  54. * 到服务器的连接是否为安全连接,默认false
  55. * @return boolean
  56. */
  57. public function __construct($server = "", $username = "", $password = "", $port = 465, $isSecurity = true, $debug = false)
  58. {
  59. if ($server) {
  60. $this->sendServer = $server;
  61. $this->port = $port;
  62. $this->isSecurity = $isSecurity ? true : false;
  63. $this->debug = $debug;
  64. $this->userName = empty($username) ? "" : base64_encode($username);
  65. $this->password = empty($password) ? "" : base64_encode($password);
  66. $this->from = $username;
  67. } else {
  68. $smtp = Config::get();
  69. $this->sendServer = $smtp['smtp_server'];
  70. $this->port = $smtp['smtp_port'];
  71. $this->isSecurity = $smtp['smtp_ssl'] ? true : false;
  72. $this->debug = $debug;
  73. $this->userName = base64_encode($smtp['smtp_username']);
  74. $this->password = base64_encode($smtp['smtp_password']);
  75. $this->from = $smtp['smtp_username'];
  76. }
  77. return true;
  78. }
  79. /**
  80. * 设置收件人,多个收件人,调用多次或用逗号隔开.
  81. *
  82. * @param string $to
  83. * 收件人地址
  84. * @return boolean
  85. */
  86. public function setReceiver($to)
  87. {
  88. if (strpos($to, ',')) {
  89. $this->to = explode(',', $to);
  90. } else {
  91. $this->to[] = $to;
  92. }
  93. return true;
  94. }
  95. /**
  96. * 设置抄送,多个抄送,调用多次或用逗号隔开.
  97. *
  98. * @param string $cc
  99. * 抄送地址
  100. * @return boolean
  101. */
  102. public function setCc($cc)
  103. {
  104. if (strpos($cc, ',')) {
  105. $this->cc = explode(',', $cc);
  106. } else {
  107. $this->cc[] = $cc;
  108. }
  109. return true;
  110. }
  111. /**
  112. * 设置秘密抄送,多个秘密抄送,调用多次或用逗号隔开.
  113. *
  114. * @param string $bcc
  115. * 秘密抄送地址
  116. * @return boolean
  117. */
  118. public function setBcc($bcc)
  119. {
  120. if (strpos($bcc, ',')) {
  121. $this->bcc = explode(',', $bcc);
  122. } else {
  123. $this->bcc[] = $bcc;
  124. }
  125. return true;
  126. }
  127. /**
  128. * 设置邮件附件,多个附件,调用多次
  129. *
  130. * @param string $file
  131. * 文件地址
  132. * @return boolean
  133. */
  134. public function addAttachment($file)
  135. {
  136. if (! file_exists($file)) {
  137. $this->errorMessage = "file " . $file . " does not exist.";
  138. return false;
  139. }
  140. $this->attachment[] = $file;
  141. return true;
  142. }
  143. /**
  144. * 设置邮件信息
  145. *
  146. * @param string $body
  147. * 邮件主题
  148. * @param string $subject
  149. * 邮件主体内容,可以是纯文本,也可是是HTML文本
  150. * @return boolean
  151. */
  152. public function setMail($subject, $body)
  153. {
  154. $this->subject = base64_encode($subject);
  155. $this->body = base64_encode($body);
  156. return true;
  157. }
  158. /**
  159. * 发送邮件
  160. *
  161. * @return boolean
  162. */
  163. public function sendMail($to = '', $subject = '', $body = '')
  164. {
  165. if ($to) {
  166. $this->setReceiver($to);
  167. $this->setMail($subject, $body);
  168. }
  169. $command = $this->getCommand();
  170. if (! $this->socket($this->isSecurity)) {
  171. return false;
  172. }
  173. foreach ($command as $value) {
  174. $result = $this->sendCommand($value[0], $value[1]);
  175. if ($result) {
  176. continue;
  177. } else {
  178. return false;
  179. }
  180. }
  181. // 关闭连接
  182. $this->close();
  183. return true;
  184. }
  185. /**
  186. * 返回错误信息
  187. *
  188. * @return string
  189. */
  190. public function error()
  191. {
  192. if (! isset($this->errorMessage)) {
  193. $this->errorMessage = "";
  194. }
  195. return $this->errorMessage;
  196. }
  197. /**
  198. * 返回mail命令
  199. *
  200. * @access protected
  201. * @return array
  202. */
  203. protected function getCommand()
  204. {
  205. $separator = "----=_Part_" . md5($this->from . time()) . uniqid(); // 分隔符
  206. $command = array(
  207. array(
  208. "HELO sendmail\r\n",
  209. 250
  210. )
  211. );
  212. if (! empty($this->userName)) {
  213. $command[] = array(
  214. "AUTH LOGIN\r\n",
  215. 334
  216. );
  217. $command[] = array(
  218. $this->userName . "\r\n",
  219. 334
  220. );
  221. $command[] = array(
  222. $this->password . "\r\n",
  223. 235
  224. );
  225. }
  226. // 设置发件人
  227. $command[] = array(
  228. "MAIL FROM: <" . $this->from . ">\r\n",
  229. 250
  230. );
  231. $header = "FROM: <" . $this->from . ">\r\n";
  232. // 设置收件人
  233. if (! empty($this->to)) {
  234. $count = count($this->to);
  235. if ($count == 1) {
  236. $command[] = array(
  237. "RCPT TO: <" . $this->to[0] . ">\r\n",
  238. 250
  239. );
  240. $header .= "TO: <" . $this->to[0] . ">\r\n";
  241. } else {
  242. for ($i = 0; $i < $count; $i ++) {
  243. $command[] = array(
  244. "RCPT TO: <" . $this->to[$i] . ">\r\n",
  245. 250
  246. );
  247. if ($i == 0) {
  248. $header .= "TO: <" . $this->to[$i] . ">";
  249. } elseif ($i + 1 == $count) {
  250. $header .= ",<" . $this->to[$i] . ">\r\n";
  251. } else {
  252. $header .= ",<" . $this->to[$i] . ">";
  253. }
  254. }
  255. }
  256. }
  257. // 设置抄送
  258. if (! empty($this->cc)) {
  259. $count = count($this->cc);
  260. if ($count == 1) {
  261. $command[] = array(
  262. "RCPT TO: <" . $this->cc[0] . ">\r\n",
  263. 250
  264. );
  265. $header .= "CC: <" . $this->cc[0] . ">\r\n";
  266. } else {
  267. for ($i = 0; $i < $count; $i ++) {
  268. $command[] = array(
  269. "RCPT TO: <" . $this->cc[$i] . ">\r\n",
  270. 250
  271. );
  272. if ($i == 0) {
  273. $header .= "CC: <" . $this->cc[$i] . ">";
  274. } elseif ($i + 1 == $count) {
  275. $header .= ",<" . $this->cc[$i] . ">\r\n";
  276. } else {
  277. $header .= ",<" . $this->cc[$i] . ">";
  278. }
  279. }
  280. }
  281. }
  282. // 设置秘密抄送
  283. if (! empty($this->bcc)) {
  284. $count = count($this->bcc);
  285. if ($count == 1) {
  286. $command[] = array(
  287. "RCPT TO: <" . $this->bcc[0] . ">\r\n",
  288. 250
  289. );
  290. $header .= "BCC: <" . $this->bcc[0] . ">\r\n";
  291. } else {
  292. for ($i = 0; $i < $count; $i ++) {
  293. $command[] = array(
  294. "RCPT TO: <" . $this->bcc[$i] . ">\r\n",
  295. 250
  296. );
  297. if ($i == 0) {
  298. $header .= "BCC: <" . $this->bcc[$i] . ">";
  299. } elseif ($i + 1 == $count) {
  300. $header .= ",<" . $this->bcc[$i] . ">\r\n";
  301. } else {
  302. $header .= ",<" . $this->bcc[$i] . ">";
  303. }
  304. }
  305. }
  306. }
  307. // 主题
  308. $header .= "Subject: =?UTF-8?B?" . $this->subject . "?=\r\n";
  309. if (isset($this->attachment)) {
  310. // 含有附件的邮件头需要声明成这个
  311. $header .= "Content-Type: multipart/mixed;\r\n";
  312. } elseif (false) {
  313. // 邮件体含有图片资源的,且包含的图片在邮件内部时声明成这个,如果是引用的远程图片,就不需要了
  314. $header .= "Content-Type: multipart/related;\r\n";
  315. } else {
  316. // html或者纯文本的邮件声明成这个
  317. $header .= "Content-Type: multipart/alternative;\r\n";
  318. }
  319. // 邮件头分隔符
  320. $header .= "\t" . 'boundary="' . $separator . '"';
  321. $header .= "\r\nMIME-Version: 1.0\r\n";
  322. // 这里开始是邮件的body部分,body部分分成几段发送
  323. $header .= "\r\n--" . $separator . "\r\n";
  324. $header .= "Content-Type:text/html; charset=utf-8\r\n";
  325. $header .= "Content-Transfer-Encoding: base64\r\n\r\n";
  326. $header .= $this->body . "\r\n";
  327. $header .= "--" . $separator . "\r\n";
  328. // 加入附件
  329. if (! empty($this->attachment)) {
  330. $count = count($this->attachment);
  331. for ($i = 0; $i < $count; $i ++) {
  332. $header .= "\r\n--" . $separator . "\r\n";
  333. $header .= "Content-Type: " . $this->getMIMEType($this->attachment[$i]) . '; name="=?UTF-8?B?' . base64_encode(basename($this->attachment[$i])) . '?="' . "\r\n";
  334. $header .= "Content-Transfer-Encoding: base64\r\n";
  335. $header .= 'Content-Disposition: attachment; filename="=?UTF-8?B?' . base64_encode(basename($this->attachment[$i])) . '?="' . "\r\n";
  336. $header .= "\r\n";
  337. $header .= $this->readFile($this->attachment[$i]);
  338. $header .= "\r\n--" . $separator . "\r\n";
  339. }
  340. }
  341. // 结束邮件数据发送
  342. $header .= "\r\n.\r\n";
  343. $command[] = array(
  344. "DATA\r\n",
  345. 354
  346. );
  347. $command[] = array(
  348. $header,
  349. 250
  350. );
  351. $command[] = array(
  352. "QUIT\r\n",
  353. 221
  354. );
  355. return $command;
  356. }
  357. /**
  358. * 发送命令
  359. *
  360. * @param string $command
  361. * 发送到服务器的smtp命令
  362. * @param int $code
  363. * 期望服务器返回的响应吗
  364. * @return boolean
  365. */
  366. protected function sendCommand($command, $code)
  367. {
  368. if ($this->debug) {
  369. echo 'Send command:' . $command . ',expected code:' . $code . '<br />';
  370. }
  371. try {
  372. if (fwrite($this->socket, $command)) {
  373. // 当邮件内容分多次发送时,没有$code,服务器没有返回
  374. if (empty($code)) {
  375. return true;
  376. }
  377. // 读取服务器返回
  378. $data = trim(fread($this->socket, 1024));
  379. if (! mb_check_encoding($data, 'utf-8')) {
  380. $data = iconv('gbk', 'utf-8', $data);
  381. }
  382. if ($this->debug) {
  383. echo 'response:' . $data . '<br /><br />';
  384. }
  385. if ($data) {
  386. $pattern = "/^" . $code . "+?/";
  387. if (preg_match($pattern, $data)) {
  388. return true;
  389. } else {
  390. $this->errorMessage = $data;
  391. return false;
  392. }
  393. } else {
  394. return false;
  395. }
  396. } else {
  397. $this->errorMessage = "Error: " . $command . " send failed";
  398. return false;
  399. }
  400. } catch (\Exception $e) {
  401. $this->errorMessage = "Error:" . $e->getMessage();
  402. }
  403. }
  404. /**
  405. * 读取附件文件内容,返回base64编码后的文件内容
  406. *
  407. * @param string $file
  408. * 文件
  409. * @return mixed
  410. */
  411. protected function readFile($file)
  412. {
  413. if (file_exists($file)) {
  414. $file_obj = file_get_contents($file);
  415. return base64_encode($file_obj);
  416. } else {
  417. $this->errorMessage = "file " . $file . " dose not exist";
  418. return false;
  419. }
  420. }
  421. /**
  422. * 获取附件MIME类型
  423. *
  424. * @param string $file
  425. * 文件
  426. * @return mixed
  427. */
  428. protected function getMIMEType($file)
  429. {
  430. if (file_exists($file)) {
  431. $mime = mime_content_type($file);
  432. return $mime;
  433. } else {
  434. return false;
  435. }
  436. }
  437. /**
  438. * 建立到服务器的网络连接
  439. *
  440. * @return boolean
  441. */
  442. protected function socket($ssl = true)
  443. {
  444. if ($ssl && ! extension_loaded('openssl')) {
  445. $this->errorMessage = '服务器未启用openssl扩展,无法使用加密方式发送邮件!';
  446. return false;
  447. }
  448. if (function_exists('stream_socket_client')) {
  449. if (! function_exists('stream_socket_enable_crypto')) {
  450. $this->errorMessage = '服务器已经禁用stream_socket_enable_crypto函数,无法发送邮件!';
  451. return false;
  452. }
  453. if (! function_exists('stream_set_blocking')) {
  454. $this->errorMessage = '服务器已经禁用stream_set_blocking函数,无法发送邮件!';
  455. return false;
  456. }
  457. // 建立连接
  458. $remoteAddr = "tcp://" . $this->sendServer . ":" . $this->port;
  459. $this->socket = stream_socket_client($remoteAddr, $errno, $errstr, 30);
  460. if (! $this->socket) {
  461. $this->errorMessage = $errstr;
  462. return false;
  463. }
  464. // 设置加密方式
  465. $crypto_method = STREAM_CRYPTO_METHOD_TLS_CLIENT;
  466. if (defined('STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT')) {
  467. $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT;
  468. $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT;
  469. }
  470. stream_socket_enable_crypto($this->socket, $ssl, $crypto_method);
  471. } elseif (function_exists('fsockopen')) {
  472. if ($ssl) {
  473. $remoteAddr = "ssl://" . $this->sendServer;
  474. } else {
  475. $remoteAddr = "tcp://" . $this->sendServer;
  476. }
  477. $this->socket = fsockopen($remoteAddr, $this->port, $errno, $errstr, 30);
  478. if (! $this->socket) {
  479. $this->errorMessage = $errstr;
  480. return false;
  481. }
  482. } else {
  483. $this->errorMessage = '服务器已经禁用stream_socket_client和fsockopen函数,请至少开启一个才能发送邮件!';
  484. return false;
  485. }
  486. stream_set_blocking($this->socket, 1); // 设置阻塞模式
  487. $str = fread($this->socket, 1024);
  488. if (! preg_match("/220+?/", $str)) {
  489. $this->errorMessage = $str;
  490. return false;
  491. }
  492. return true;
  493. }
  494. /**
  495. * 关闭安全socket
  496. *
  497. * @return boolean
  498. */
  499. protected function close()
  500. {
  501. if (isset($this->socket) && is_object($this->socket)) {
  502. stream_socket_shutdown($this->socket, STREAM_SHUT_WR);
  503. return true;
  504. }
  505. $this->errorMessage = "No resource can to be close";
  506. return false;
  507. }
  508. }