> 백엔드 개발 > PHP 튜토리얼 > PHP로 작성된 SMTP 이메일 전송 클래스

PHP로 작성된 SMTP 이메일 전송 클래스

WBOY
풀어 주다: 2016-07-25 08:54:40
원래의
905명이 탐색했습니다.
  1. $smtpserver = "*****";
  2. $smtpserverport = 25;
  3. $smtpuser = "** ****";
  4. $smtppass = "*******";
  5. $smtp = new smtp($smtpserver, $smtpserverport, true, $smtpuser, $smtppass); //여기 A true는 인증이 사용됨을 의미하며, 그렇지 않으면
  6. $smtp->debug = false;
  7. //$emailtype = "HTML";
  8. for ($i=0; $ i< 5; $i ) {
  9. $smtp->sendmail("*****", "******", "Hello world!","이것은 단지 테스트일 뿐입니다!") ;
  10. }
  11. echo "총 $i 이메일이 전송되었습니다!";
  12. ?>
코드 복사

다음은 특정 클래스의 구현입니다.

  1. class smtp {

  2. /* 공용 변수 */
  3. var $smtp_port;
  4. var $time_out;
  5. var $host_name;
  6. var $log_file;
  7. var $relay_host;
  8. var $debug;
  9. var $auth;
  10. var $user;
  11. var $pass;
  12. /* 개인 변수 */
  13. var $sock;
  14. /* 생성자 */
  15. function smtp($relay_host = "", $smtp_port = 25, $auth = false, $user, $pass)
  16. {
  17. $this->debug = false;
  18. $this->smtp_port = $smtp_port;
  19. $this->relay_host = $relay_host;
  20. $this->time_out = 30; //fsockopen()에서 사용됩니다
  21. $this->auth = $auth; //auth
  22. $this->user = $user;
  23. $this->pass = $pass;
  24. $this->host_name = "localhost"; //HELO 명령에 사용됩니다
  25. $this->log_file = "";
  26. $this->sock = false;
  27. }
  28. /* 주요 기능 */
  29. 함수 sendmail ($to, $from, $subject = "", $body = "", $mailtype= "", $cc = "", $bcc = "", $additional_headers = "")
  30. {
  31. $mail_from = $this->get_address($this->strip_comment($from));
  32. $body = ereg_replace("(^|( ))(.)", "1.3", $body);
  33. $header .= "MIME-Version:1.0 ";
  34. if ($mailtype == "HTML") {
  35. $header .= "Content-Type:text/html ";
  36. }
  37. $header .= "받는 사람: " . $to . " ";
  38. if ($cc != "") {
  39. $header .= "Cc: " . $cc . " ";
  40. }
  41. $header .= "보낸 사람: $from<" . $에서 . ">; ";
  42. $header .= "제목: " . $주제 . " ";
  43. $header .= $additional_headers;
  44. $header .= "날짜: " . 날짜("r") . " ";
  45. $header .= "X-Mailer:By Redhat (PHP/" . phpversion() . ") ";
  46. list($msec, $sec) = 폭발(" ", microtime() );
  47. $header .= "메시지 ID: <" . 날짜("YmdHis", $sec) . "." . ($밀리초 * 1000000) . "." . $mail_from . ">; ";
  48. $TO = 폭발(",", $this->strip_comment($to));
  49. if ($cc != "") {
  50. $TO = array_merge ($TO,explod(",", $this->strip_comment($cc)));
  51. }
  52. if ($bcc != "") {
  53. $TO = array_merge($TO ,explod(",", $this->strip_comment($bcc)));
  54. }
  55. $sent = true;
  56. foreach ($TO를 $rcpt_to로) {
  57. $rcpt_to = $this->get_address($rcpt_to);
  58. if (!$this->smtp_sockopen($rcpt_to)) {
  59. $this->log_write("오류: "에 이메일을 보낼 수 없습니다. $rcpt_to . " ");
  60. $sent = false;
  61. 계속;
  62. }
  63. if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
  64. $this->log_write("이메일은 <" . $rcpt_to . ">; ");
  65. } else {
  66. $this-> ;log_write("오류: <" . $rcpt_to . ">; ");
  67. $sent = false;
  68. }
  69. fclose($this->sock);
  70. $this->log_write("원격 호스트에서 연결이 끊어졌습니다. ");
  71. }
  72. return $sent;
  73. }

  74. /* 개인 함수 */

  75. function smtp_send($helo, $from, $to, $header, $body = "")
  76. {
  77. if (!$this->smtp_putcmd("HELO" , $helo)) {
  78. return $this->smtp_error("HELO 명령 전송 중");
  79. }
  80. // auth
  81. if ($this->auth) {
  82. if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
  83. return $this->smtp_error("HELO 명령 전송 중");
  84. }
  85. if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
  86. return $this->smtp_error("HELO 명령 전송 중");
  87. }
  88. }
  89. if (!$this->smtp_putcmd("MAIL", "FROM:<" . $from . ">;")) {
  90. return $this->smtp_error(" MAIL FROM 명령 보내기");
  91. }
  92. if (!$this->smtp_putcmd("RCPT", "TO:<" . $to . ">;")) {
  93. return $this->smtp_error("RCPT TO 명령을 보내는 중");
  94. }
  95. if (!$this->smtp_putcmd("DATA")) {
  96. return $this->smtp_error("DATA 명령 전송 중");
  97. }
  98. if (!$this- >smtp_message($header, $body)) {
  99. return $this->smtp_error("sending message");
  100. }
  101. if (!$this->smtp_eom()) {
  102. return $this->smtp_error(";;.;; [EOM]");
  103. }
  104. if (!$ this->smtp_putcmd("QUIT")) {
  105. return $this->smtp_error("QUIT 명령 보내기");
  106. }
  107. return true;
  108. }
  109. function smtp_sockopen( $address)
  110. {
  111. if ($this->relay_host == "") {
  112. return $this->smtp_sockopen_mx($address);
  113. } else {
  114. return $ this->smtp_sockopen_relay();
  115. }
  116. }
  117. function smtp_sockopen_relay()
  118. {
  119. $this->log_write("" . $this->relay_host . " 를 시도 중입니다. :" . $this->smtp_port . " ");
  120. $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this- >time_out);
  121. if (!($this->sock && $this->smtp_ok())) {
  122. $this->log_write("오류: 릴레이 호스트에 연결할 수 없습니다. " . $this->relay_host . " ");
  123. $this->log_write("오류: " . $errstr . " (" . $errno . ") ");
  124. return false;
  125. }
  126. $this- >log_write("릴레이 호스트에 연결되었습니다. " . $this->relay_host . " ");
  127. return true;;
  128. }
  129. function smtp_sockopen_mx($address)
  130. {
  131. $ domain = ereg_replace("^.@([^@] )$", "1", $address);
  132. if (!@getmxrr($domain, $MXHOSTS)) {
  133. $this-> log_write("오류: MX "" . $domain . "" ");
  134. return false;
  135. }
  136. foreach ($MXHOSTS as $host) {
  137. $this->log_write ("" . $host . ":" . $this->smtp_port . " ");
  138. $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
  139. if (!($this->sock && $this->smtp_ok())) {
  140. $this->log_write("경고: 다음을 수행할 수 없습니다. mx 호스트 " . $host . " ");
  141. $this->log_write("오류: " . $errstr . " (" . $errno . ") ");
  142. 계속;
  143. }
  144. $this->log_write("mx 호스트에 연결되었습니다. " . $ 호스트 . " ");
  145. return true;
  146. }
  147. $this->log_write("오류: 어떤 mx 호스트에도 연결할 수 없습니다(" . implode(", ", $MXHOSTS) . ") ") ;
  148. false 반환;
  149. }
  150. function smtp_message($header, $body)
  151. {
  152. fputs($this->sock, $header . " " . $body);
  153. $this->smtp_debug(">; " . str_replace(" ", " " . ">; ", $header . " >; " . $body . " >; "));
  154. true를 반환합니다.
  155. }
  156. function smtp_eom()
  157. {
  158. fputs($this->sock, " . ");
  159. $this->smtp_debug(". [ EOM] ");
  160. return $this->smtp_ok();
  161. }
  162. function smtp_ok()
  163. {
  164. $response = str_replace(" ", "", fgets($ this->sock, 512));
  165. $this->smtp_debug($response . " ");
  166. if (!ereg("^[23]", $response)) {
  167. fputs($this->sock, "QUIT ");
  168. fgets($this->sock, 512);
  169. $this->log_write("오류: 원격 호스트가 ""를 반환했습니다. $response . "" ");
  170. false 반환;
  171. }
  172. true 반환;
  173. }
  174. 함수 smtp_putcmd($cmd, $arg = "")
  175. {
  176. if ( $arg != "") {
  177. if ($cmd == "") $cmd = $arg;
  178. else $cmd = $cmd . " " . $arg;
  179. }
  180. fputs($this->sock, $cmd . " ");
  181. $this->smtp_debug(">; " . $cmd . " ");
  182. return $this->smtp_ok();
  183. }
  184. function smtp_error($string)
  185. {
  186. $this->log_write("오류: 오류가 발생했습니다. " . $string . ". ");
  187. false 반환;
  188. }
  189. function log_write($message)
  190. {
  191. $this->smtp_debug($message);
  192. if ($this->log_file == "") {
  193. return true;
  194. }
  195. $message = date("M d H:i:s ") . get_current_user() . "[" . getmypid() . "]: " . $message;
  196. if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) {
  197. $this-> ;smtp_debug("경고: 로그 파일을 열 수 없습니다. "" . $this->log_file . "" ");
  198. return false;;
  199. }
  200. sheep($fp, LOCK_EX);
  201. fputs($fp, $message);
  202. fclose($fp);
  203. return true;
  204. }
  205. function Strip_comment($address)
  206. {
  207. $comment = "([ ^()]*)";
  208. while (ereg($comment, $address)) {
  209. $address = ereg_replace($comment, "", $address);
  210. }
  211. return $ 주소;
  212. }
  213. 함수 get_address($address)
  214. {
  215. $address = ereg_replace("([ ]) ", "", $address);
  216. $address = ereg_replace(" ^.*<(. )>;.*$", "1", $address);
  217. return $address;
  218. }
  219. 함수 smtp_debug($message)
  220. {
  221. if ($this->debug) {
  222. echo $message . ";";
  223. }
  224. }
  225. }
  226. ?>

复system代码


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿