/opencart_v1.4/upload/system/library/mail.php

http://coderstalk.googlecode.com/ · PHP · 377 lines · 289 code · 88 blank · 0 comment · 100 complexity · 605eb6c0a1648d3b9db6ccb143be8354 MD5 · raw file

  1. <?php
  2. final class Mail {
  3. protected $to;
  4. protected $from;
  5. protected $sender;
  6. protected $subject;
  7. protected $text;
  8. protected $html;
  9. protected $attachments = array();
  10. protected $protocol = 'mail';
  11. protected $hostname;
  12. protected $username;
  13. protected $password;
  14. protected $port = 25;
  15. protected $timeout = 5;
  16. public function __construct($protocol = 'mail', $hostname = '', $username = '', $password = '', $port = '25', $timeout = '5') {
  17. $this->protocol = $protocol;
  18. $this->hostname = $hostname;
  19. $this->username = $username;
  20. $this->password = $password;
  21. $this->port = $port;
  22. $this->timeout = $timeout;
  23. }
  24. public function setTo($to) {
  25. $this->to = $to;
  26. }
  27. public function setFrom($from) {
  28. $this->from = $from;
  29. }
  30. public function addheader($header, $value) {
  31. $this->headers[$header] = $value;
  32. }
  33. public function setSender($sender) {
  34. $this->sender = $sender;
  35. }
  36. public function setSubject($subject) {
  37. $this->subject = $subject;
  38. }
  39. public function setText($text) {
  40. $this->text = $text;
  41. }
  42. public function setHtml($html) {
  43. $this->html = $html;
  44. }
  45. public function addAttachment($attachment) {
  46. if (!is_array($attachment)) {
  47. $this->attachments[] = $attachment;
  48. } else{
  49. $this->attachments = array_merge($this->attachments, $attachment);
  50. }
  51. }
  52. public function send() {
  53. if (!$this->to) {
  54. exit('Error: E-Mail to required!');
  55. }
  56. if (!$this->from) {
  57. exit('Error: E-Mail from required!');
  58. }
  59. if (!$this->sender) {
  60. exit('Error: E-Mail sender required!');
  61. }
  62. if (!$this->subject) {
  63. exit('Error: E-Mail subject required!');
  64. }
  65. if ((!$this->text) && (!$this->html)) {
  66. exit('Error: E-Mail message required!');
  67. }
  68. if (is_array($this->to)) {
  69. $to = implode(',', $this->to);
  70. } else {
  71. $to = $this->to;
  72. }
  73. $boundary = '----=_NextPart_' . md5(time());
  74. if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')) {
  75. $eol = "\r\n";
  76. } elseif (strtoupper(substr(PHP_OS, 0, 3) == 'MAC')) {
  77. $eol = "\r";
  78. } else {
  79. $eol = "\n";
  80. }
  81. $header = '';
  82. if ($this->protocol != 'mail') {
  83. $header .= 'To: ' . $to . $eol;
  84. $header .= 'Subject: ' . $this->subject . $eol;
  85. }
  86. $header .= 'From: ' . $this->sender . '<' . $this->from . '>' . $eol;
  87. $header .= 'Reply-To: ' . $this->sender . '<' . $this->from . '>' . $eol;
  88. $header .= 'Return-Path: ' . $this->from . $eol;
  89. $header .= 'X-Mailer: PHP/' . phpversion() . $eol;
  90. $header .= 'MIME-Version: 1.0' . $eol;
  91. $header .= 'Content-Type: multipart/mixed; boundary="' . $boundary . '"' . $eol;
  92. if (!$this->html) {
  93. $message = '--' . $boundary . $eol;
  94. $message .= 'Content-Type: text/plain; charset="utf-8"' . $eol;
  95. $message .= 'Content-Transfer-Encoding: 8bit' . $eol . $eol;
  96. $message .= $this->text . $eol;
  97. } else {
  98. $message = '--' . $boundary . $eol;
  99. $message .= 'Content-Type: multipart/alternative; boundary="' . $boundary . '_alt"' . $eol . $eol;
  100. $message .= '--' . $boundary . '_alt' . $eol;
  101. $message .= 'Content-Type: text/plain; charset="utf-8"' . $eol;
  102. $message .= 'Content-Transfer-Encoding: 8bit' . $eol;
  103. if ($this->text) {
  104. $message .= $this->text . $eol;
  105. } else {
  106. $message .= 'This is a HTML email and your email client software does not support HTML email!' . $eol;
  107. }
  108. $message .= '--' . $boundary . '_alt' . $eol;
  109. $message .= 'Content-Type: text/html; charset="utf-8"' . $eol;
  110. $message .= 'Content-Transfer-Encoding: 8bit' . $eol . $eol;
  111. $message .= $this->html . $eol;
  112. $message .= '--' . $boundary . '_alt--' . $eol;
  113. }
  114. foreach ($this->attachments as $attachment) {
  115. $filename = basename($attachment);
  116. $handle = fopen($attachment, 'r');
  117. $content = fread($handle, filesize($attachment));
  118. fclose($handle);
  119. $message .= '--' . $boundary . $eol;
  120. $message .= 'Content-Type: application/octetstream' . $eol;
  121. $message .= 'Content-Transfer-Encoding: base64' . $eol;
  122. $message .= 'Content-Disposition: attachment; filename="' . $filename . '"' . $eol;
  123. $message .= 'Content-ID: <' . $filename . '>' . $eol . $eol;
  124. $message .= chunk_split(base64_encode($content));
  125. }
  126. if ($this->protocol == 'mail') {
  127. ini_set('sendmail_from', $this->from);
  128. mail($to, $this->subject, $message, $header);
  129. } elseif ($this->protocol == 'smtp') {
  130. $handle = fsockopen($this->hostname, $this->port, $errno, $errstr, $this->timeout);
  131. if (!$handle) {
  132. error_log('Error: ' . $errstr . ' (' . $errno . ')');
  133. } else {
  134. if (substr(PHP_OS, 0, 3) != 'WIN') {
  135. socket_set_timeout($handle, $this->timeout, 0);
  136. }
  137. while ($line = fgets($handle, 515)) {
  138. if (substr($line, 3, 1) == ' ') {
  139. break;
  140. }
  141. }
  142. if (substr($this->hostname, 0, 3) == 'tls') {
  143. fputs($handle, 'STARTTLS' . $eol);
  144. while ($line = fgets($handle, 515)) {
  145. $reply .= $line;
  146. if (substr($line, 3, 1) == ' ') {
  147. break;
  148. }
  149. }
  150. if (substr($reply, 0, 3) != 220) {
  151. error_log('Error: STARTTLS not accepted from server!');
  152. }
  153. }
  154. if (!empty($this->username) && !empty($this->password)) {
  155. fputs($handle, 'EHLO ' . getenv('SERVER_NAME') . $eol);
  156. $reply = '';
  157. while ($line = fgets($handle, 515)) {
  158. $reply .= $line;
  159. if (substr($line, 3, 1) == ' ') {
  160. break;
  161. }
  162. }
  163. if (substr($reply, 0, 3) != 250) {
  164. error_log('Error: EHLO not accepted from server!');
  165. }
  166. fputs($handle, 'AUTH LOGIN' . $eol);
  167. $reply = '';
  168. while ($line = fgets($handle, 515)) {
  169. $reply .= $line;
  170. if (substr($line, 3, 1) == ' ') {
  171. break;
  172. }
  173. }
  174. if (substr($reply, 0, 3) != 334) {
  175. error_log('Error: AUTH LOGIN not accepted from server!');
  176. }
  177. fputs($handle, base64_encode($this->username) . $eol);
  178. $reply = '';
  179. while ($line = fgets($handle, 515)) {
  180. $reply .= $line;
  181. if (substr($line, 3, 1) == ' ') {
  182. break;
  183. }
  184. }
  185. if (substr($reply, 0, 3) != 334) {
  186. error_log('Error: Username not accepted from server!');
  187. }
  188. fputs($handle, base64_encode($this->password) . $eol);
  189. $reply = '';
  190. while ($line = fgets($handle, 515)) {
  191. $reply .= $line;
  192. if (substr($line, 3, 1) == ' ') {
  193. break;
  194. }
  195. }
  196. if (substr($reply, 0, 3) != 235) {
  197. error_log('Error: Password not accepted from server!');
  198. }
  199. } else {
  200. fputs($handle, 'HELO ' . getenv('SERVER_NAME') . $eol);
  201. $reply = '';
  202. while ($line = fgets($handle, 515)) {
  203. $reply .= $line;
  204. if (substr($line, 3, 1) == ' ') {
  205. break;
  206. }
  207. }
  208. if (substr($reply, 0, 3) != 250) {
  209. error_log('Error: HELO not accepted from server!');
  210. }
  211. }
  212. fputs($handle, 'MAIL FROM: <' . $this->from . '>XVERP' . $eol);
  213. $reply = '';
  214. while ($line = fgets($handle, 515)) {
  215. $reply .= $line;
  216. if (substr($line, 3, 1) == ' ') {
  217. break;
  218. }
  219. }
  220. if (substr($reply, 0, 3) != 250) {
  221. error_log('Error: MAIL FROM not accepted from server!');
  222. }
  223. if (!is_array($this->to)) {
  224. fputs($handle, 'RCPT TO: <' . $this->to . '>' . $eol);
  225. $reply = '';
  226. while ($line = fgets($handle, 515)) {
  227. $reply .= $line;
  228. if (substr($line, 3, 1) == ' ') {
  229. break;
  230. }
  231. }
  232. if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
  233. error_log('Error: RCPT TO not accepted from server!');
  234. }
  235. } else {
  236. foreach ($this->to as $recipient) {
  237. fputs($handle, 'RCPT TO: <' . $recipient . '>' . $eol);
  238. $reply = '';
  239. while ($line = fgets($handle, 515)) {
  240. $reply .= $line;
  241. if (substr($line, 3, 1) == ' ') {
  242. break;
  243. }
  244. }
  245. if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
  246. error_log('Error: RCPT TO not accepted from server!');
  247. }
  248. }
  249. }
  250. fputs($handle, 'DATA' . $eol);
  251. $reply = '';
  252. while ($line = fgets($handle, 515)) {
  253. $reply .= $line;
  254. if (substr($line, 3, 1) == ' ') {
  255. break;
  256. }
  257. }
  258. if (substr($reply, 0, 3) != 354) {
  259. error_log('Error: DATA not accepted from server!');
  260. }
  261. fputs($handle, $header . $message . $eol);
  262. fputs($handle, '.' . $eol);
  263. $reply = '';
  264. while ($line = fgets($handle, 515)) {
  265. $reply .= $line;
  266. if (substr($line, 3, 1) == ' ') {
  267. break;
  268. }
  269. }
  270. if (substr($reply, 0, 3) != 250) {
  271. error_log('Error: DATA not accepted from server!');
  272. }
  273. fputs($handle, 'QUIT' . $eol);
  274. $reply = '';
  275. while ($line = fgets($handle, 515)) {
  276. $reply .= $line;
  277. if (substr($line, 3, 1) == ' ') {
  278. break;
  279. }
  280. }
  281. if (substr($reply, 0, 3) != 221) {
  282. error_log('Error: QUIT not accepted from server!');
  283. }
  284. fclose($handle);
  285. }
  286. }
  287. }
  288. }
  289. ?>