smtp.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <?php
  2. class smtp
  3. {
  4. /* Public Variables */
  5. var $smtp_port; //smtp_port 端口号
  6. var $time_out;
  7. var $host_name; //服务器主机名
  8. var $log_file;
  9. var $relay_host; //服务器主机地址
  10. var $debug;
  11. var $auth; //验证
  12. var $user; //服务器用户名
  13. var $pass; //服务器密码
  14. /* Private Variables */
  15. var $sock;
  16. /* Constractor 构造方法*/
  17. function __construct($relay_host = "", $smtp_port = 25, $auth = false, $user, $pass)
  18. {
  19. $this->debug = FALSE;
  20. $this->smtp_port = $smtp_port;
  21. $this->relay_host = $relay_host;
  22. $this->time_out = 30; //is used in fsockopen()
  23. #
  24. $this->auth = $auth; //auth
  25. $this->user = $user;
  26. $this->pass = $pass;
  27. #
  28. $this->host_name = "localhost"; //is used in HELO command
  29. // $this->host_name = "smtp.163.com"; //is used in HELO command
  30. $this->log_file = "";
  31. $this->sock = FALSE;
  32. }
  33. /* Main Function */
  34. function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
  35. {
  36. $header = "";
  37. $mail_from = $this->get_address($this->strip_comment($from));
  38. $body = mb_ereg_replace("(^|(\r\n))(\\.)", "\\1.\\3", $body);
  39. $header .= "MIME-Version:1.0\r\n";
  40. if ($mailtype == "HTML") { //邮件发送类型
  41. //$header .= "Content-Type:text/html\r\n";
  42. $header .= 'Content-type: text/html; charset=utf-8' . "\r\n";
  43. }
  44. $header .= "To: " . $to . "\r\n";
  45. if ($cc != "") {
  46. $header .= "Cc: " . $cc . "\r\n";
  47. }
  48. $header .= "From: " . $from . "\r\n";
  49. // $header .= "From: $from<".$from.">\r\n"; //这里只显示邮箱地址,不够人性化
  50. $header .= "Subject: " . $subject . "\r\n";
  51. $header .= $additional_headers;
  52. $header .= "Date: " . date("r") . "\r\n";
  53. $header .= "X-Mailer:By (PHP/" . phpversion() . ")\r\n";
  54. list($msec, $sec) = explode(" ", microtime());
  55. $header .= "Message-ID: <" . date("YmdHis", $sec) . "." . ($msec * 1000000) . "." . $mail_from . ">\r\n";
  56. $TO = explode(",", $this->strip_comment($to));
  57. if ($cc != "") {
  58. $TO = array_merge($TO, explode(",", $this->strip_comment($cc))); //合并一个或多个数组
  59. }
  60. if ($bcc != "") {
  61. $TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
  62. }
  63. $sent = TRUE;
  64. foreach ($TO as $rcpt_to) {
  65. $rcpt_to = $this->get_address($rcpt_to);
  66. if (!$this->smtp_sockopen($rcpt_to)) {
  67. $this->log_write("Error: Cannot send email to " . $rcpt_to . "\n");
  68. $sent = FALSE;
  69. continue;
  70. }
  71. if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
  72. $this->log_write("E-mail has been sent to <" . $rcpt_to . ">\n");
  73. } else {
  74. $this->log_write("Error: Cannot send email to <" . $rcpt_to . ">\n");
  75. $sent = FALSE;
  76. }
  77. fclose($this->sock);
  78. $this->log_write("Disconnected from remote host\n");
  79. }
  80. // echo "<br>";
  81. //echo $header;
  82. return $sent;
  83. }
  84. /* Private Functions */
  85. function smtp_send($helo, $from, $to, $header, $body = "")
  86. {
  87. if (!$this->smtp_putcmd("HELO", $helo)) {
  88. return $this->smtp_error("sending HELO command");
  89. }
  90. #auth
  91. if ($this->auth) {
  92. if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
  93. return $this->smtp_error("sending HELO command");
  94. }
  95. if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
  96. return $this->smtp_error("sending HELO command");
  97. }
  98. }
  99. #
  100. if (!$this->smtp_putcmd("MAIL", "FROM:<" . $from . ">")) {
  101. return $this->smtp_error("sending MAIL FROM command");
  102. }
  103. if (!$this->smtp_putcmd("RCPT", "TO:<" . $to . ">")) {
  104. return $this->smtp_error("sending RCPT TO command");
  105. }
  106. if (!$this->smtp_putcmd("DATA")) {
  107. return $this->smtp_error("sending DATA command");
  108. }
  109. if (!$this->smtp_message($header, $body)) {
  110. return $this->smtp_error("sending message");
  111. }
  112. if (!$this->smtp_eom()) {
  113. return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
  114. }
  115. if (!$this->smtp_putcmd("QUIT")) {
  116. return $this->smtp_error("sending QUIT command");
  117. }
  118. return TRUE;
  119. }
  120. function smtp_sockopen($address)
  121. {
  122. if ($this->relay_host == "") {
  123. return $this->smtp_sockopen_mx($address);
  124. } else {
  125. return $this->smtp_sockopen_relay();
  126. }
  127. }
  128. function smtp_sockopen_relay()
  129. {
  130. $this->log_write("Trying to " . $this->relay_host . ":" . $this->smtp_port . "\n");
  131. $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
  132. if (!($this->sock && $this->smtp_ok())) {
  133. $this->log_write("Error: Cannot connenct to relay host " . $this->relay_host . "\n");
  134. $this->log_write("Error: " . $errstr . " (" . $errno . ")\n");
  135. return FALSE;
  136. }
  137. $this->log_write("Connected to relay host " . $this->relay_host . "\n");
  138. return TRUE;
  139. ;
  140. }
  141. function smtp_sockopen_mx($address)
  142. {
  143. $domain = ereg_replace("^.+@([^@]+)$", "\\1", $address);
  144. if (!@getmxrr($domain, $MXHOSTS)) {
  145. $this->log_write("Error: Cannot resolve MX \"" . $domain . "\"\n");
  146. return FALSE;
  147. }
  148. foreach ($MXHOSTS as $host) {
  149. $this->log_write("Trying to " . $host . ":" . $this->smtp_port . "\n");
  150. $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
  151. if (!($this->sock && $this->smtp_ok())) {
  152. $this->log_write("Warning: Cannot connect to mx host " . $host . "\n");
  153. $this->log_write("Error: " . $errstr . " (" . $errno . ")\n");
  154. continue;
  155. }
  156. $this->log_write("Connected to mx host " . $host . "\n");
  157. return TRUE;
  158. }
  159. $this->log_write("Error: Cannot connect to any mx hosts (" . implode(", ", $MXHOSTS) . ")\n");
  160. return FALSE;
  161. }
  162. function smtp_message($header, $body)
  163. {
  164. fputs($this->sock, $header . "\r\n" . $body);
  165. $this->smtp_debug("> " . str_replace("\r\n", "\n" . "> ", $header . "\n> " . $body . "\n> "));
  166. return TRUE;
  167. }
  168. function smtp_eom()
  169. {
  170. fputs($this->sock, "\r\n.\r\n");
  171. $this->smtp_debug(". [EOM]\n");
  172. return $this->smtp_ok();
  173. }
  174. function smtp_ok()
  175. {
  176. $response = str_replace("\r\n", "", fgets($this->sock, 512));
  177. $this->smtp_debug($response . "\n");
  178. if (!mb_ereg("^[23]", $response)) {
  179. fputs($this->sock, "QUIT\r\n");
  180. fgets($this->sock, 512);
  181. $this->log_write("Error: Remote host returned \"" . $response . "\"\n");
  182. return FALSE;
  183. }
  184. return TRUE;
  185. }
  186. function smtp_putcmd($cmd, $arg = "")
  187. {
  188. if ($arg != "") {
  189. if ($cmd == "")
  190. $cmd = $arg;
  191. else
  192. $cmd = $cmd . " " . $arg;
  193. }
  194. fputs($this->sock, $cmd . "\r\n");
  195. $this->smtp_debug("> " . $cmd . "\n");
  196. return $this->smtp_ok();
  197. }
  198. function smtp_error($string)
  199. {
  200. $this->log_write("Error: Error occurred while " . $string . ".\n");
  201. return FALSE;
  202. }
  203. function log_write($message)
  204. {
  205. $this->smtp_debug($message);
  206. if ($this->log_file == "") {
  207. return TRUE;
  208. }
  209. $message = date("M d H:i:s ") . get_current_user() . "[" . getmypid() . "]: " . $message;
  210. if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) {
  211. $this->smtp_debug("Warning: Cannot open log file \"" . $this->log_file . "\"\n");
  212. return FALSE;
  213. }
  214. flock($fp, LOCK_EX);
  215. fputs($fp, $message);
  216. fclose($fp);
  217. return TRUE;
  218. }
  219. function strip_comment($address)
  220. {
  221. $comment = "\\([^()]*\\)";
  222. while (mb_ereg($comment, $address)) {
  223. $address = mb_ereg_replace($comment, "", $address);
  224. }
  225. return $address;
  226. }
  227. function get_address($address)
  228. {
  229. $address = mb_ereg_replace("([ \t\r\n])+", "", $address);
  230. $address = mb_ereg_replace("^.*<(.+)>.*$", "\\1", $address);
  231. return $address;
  232. }
  233. function smtp_debug($message)
  234. {
  235. if ($this->debug) {
  236. echo $message . "<br>";
  237. }
  238. }
  239. function get_attach_type($image_tag) //
  240. {
  241. $filedata = array();
  242. $img_file_con = fopen($image_tag, "r");
  243. unset($image_data);
  244. while ($tem_buffer = AddSlashes(fread($img_file_con, filesize($image_tag))))
  245. $image_data .= $tem_buffer;
  246. fclose($img_file_con);
  247. $filedata['context'] = $image_data;
  248. $filedata['filename'] = basename($image_tag);
  249. $extension = substr($image_tag, strrpos($image_tag, "."), strlen($image_tag) - strrpos($image_tag, "."));
  250. switch ($extension) {
  251. case ".gif":
  252. $filedata['type'] = "image/gif";
  253. break;
  254. case ".gz":
  255. $filedata['type'] = "application/x-gzip";
  256. break;
  257. case ".htm":
  258. $filedata['type'] = "text/html";
  259. break;
  260. case ".html":
  261. $filedata['type'] = "text/html";
  262. break;
  263. case ".jpg":
  264. $filedata['type'] = "image/jpeg";
  265. break;
  266. case ".tar":
  267. $filedata['type'] = "application/x-tar";
  268. break;
  269. case ".txt":
  270. $filedata['type'] = "text/plain";
  271. break;
  272. case ".zip":
  273. $filedata['type'] = "application/zip";
  274. break;
  275. default:
  276. $filedata['type'] = "application/octet-stream";
  277. break;
  278. }
  279. return $filedata;
  280. }
  281. }