SendEmail.inc.php 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669
  1. <?php
  2. define('InEmpireCMSSendMail',TRUE);
  3. class phpmailer
  4. {
  5. /////////////////////////////////////////////////
  6. // PUBLIC VARIABLES
  7. /////////////////////////////////////////////////
  8. /**
  9. * Email priority (1 = High, 3 = Normal, 5 = low). Default value is 3.
  10. * @public
  11. * @type int
  12. */
  13. var $Priority = 3;
  14. /**
  15. * Sets the CharSet of the message. Default value is "iso-8859-1".
  16. * @public
  17. * @type string
  18. */
  19. var $CharSet = "iso-8859-1";
  20. /**
  21. * Sets the Content-type of the message. Default value is "text/plain".
  22. * @public
  23. * @type string
  24. */
  25. var $ContentType = "text/plain";
  26. /**
  27. * Sets the Encoding of the message. Options for this are "8bit" (default),
  28. * "7bit", "binary", "base64", and "quoted-printable".
  29. * @public
  30. * @type string
  31. */
  32. var $Encoding = "8bit";
  33. /**
  34. * Holds the most recent mailer error message. Default value is "".
  35. * @public
  36. * @type string
  37. */
  38. var $ErrorInfo = "";
  39. /**
  40. * Sets the From email address for the message. Default value is "root@localhost".
  41. * @public
  42. * @type string
  43. */
  44. var $From = "root@localhost";
  45. /**
  46. * Sets the From name of the message. Default value is "Root User".
  47. * @public
  48. * @type string
  49. */
  50. var $FromName = "Root User";
  51. /**
  52. * Sets the Sender email of the message. If not empty, will be sent via -f to sendmail
  53. * or as 'MAIL FROM' in smtp mode. Default value is "".
  54. * @public
  55. * @type string
  56. */
  57. var $Sender = "";
  58. /**
  59. * Sets the Subject of the message. Default value is "".
  60. * @public
  61. * @type string
  62. */
  63. var $Subject = "";
  64. /**
  65. * Sets the Body of the message. This can be either an HTML or text body.
  66. * If HTML then run IsHTML(true). Default value is "".
  67. * @public
  68. * @type string
  69. */
  70. var $Body = "";
  71. /**
  72. * Sets the text-only body of the message. This automatically sets the
  73. * email to multipart/alternative. This body can be read by mail
  74. * clients that do not have HTML email capability such as mutt. Clients
  75. * that can read HTML will view the normal Body.
  76. * Default value is "".
  77. * @public
  78. * @type string
  79. */
  80. var $AltBody = "";
  81. /**
  82. * Sets word wrapping on the body of the message to a given number of
  83. * characters. Default value is 0 (off).
  84. * @public
  85. * @type int
  86. */
  87. var $WordWrap = 0;
  88. /**
  89. * Method to send mail: ("mail", "sendmail", or "smtp").
  90. * Default value is "mail".
  91. * @public
  92. * @type string
  93. */
  94. var $Mailer = "mail";
  95. /**
  96. * Sets the path of the sendmail program. Default value is
  97. * "/usr/sbin/sendmail".
  98. * @public
  99. * @type string
  100. */
  101. var $Sendmail = "/usr/sbin/sendmail";
  102. /**
  103. * Turns Microsoft mail client headers on and off. Useful mostly
  104. * for older clients. Default value is false (off).
  105. * @public
  106. * @type bool
  107. */
  108. var $UseMSMailHeaders = false;
  109. /**
  110. * Path to phpmailer plugins. This is now only useful if the SMTP class
  111. * is in a different directory than the PHP include path.
  112. * Default is empty ("").
  113. * @public
  114. * @type string
  115. */
  116. var $PluginDir = "";
  117. /**
  118. * Holds phpmailer version.
  119. * @public
  120. * @type string
  121. */
  122. var $Version = "1.54";
  123. /**
  124. * Sets the email address that a reading confirmation will be sent. Default value is "".
  125. * @public
  126. * @type string
  127. */
  128. var $ConfirmReadingTo = "";
  129. /**
  130. * Sets the line endings of the message. Default is "\n";
  131. * @public
  132. * @type string
  133. */
  134. var $LE = "\n";
  135. /////////////////////////////////////////////////
  136. // SMTP VARIABLES
  137. /////////////////////////////////////////////////
  138. /**
  139. * Sets the SMTP hosts. All hosts must be separated by a
  140. * semicolon. You can also specify a different port
  141. * for each host by using this format: [hostname:port]
  142. * (e.g. "smtp1.domain.com:25;smtp2.domain.com").
  143. * Hosts will be tried in order.
  144. * Default value is "localhost".
  145. * @public
  146. * @type string
  147. */
  148. var $Host = "localhost";
  149. /**
  150. * Sets the default SMTP server port. Default value is 25.
  151. * @public
  152. * @type int
  153. */
  154. var $Port = 25;
  155. /**
  156. * Sets the SMTP HELO of the message.
  157. * Default value is "localhost.localdomain".
  158. * @public
  159. * @type string
  160. */
  161. var $Helo = "localhost.localdomain";
  162. /**
  163. * Sets SMTP authentication. Utilizes the Username and Password variables.
  164. * Default value is false (off).
  165. * @public
  166. * @type bool
  167. */
  168. var $SMTPAuth = false;
  169. /**
  170. * Sets SMTP username. Default value is "".
  171. * @public
  172. * @type string
  173. */
  174. var $Username = "";
  175. /**
  176. * Sets SMTP password. Default value is "".
  177. * @public
  178. * @type string
  179. */
  180. var $Password = "";
  181. /**
  182. * Sets the SMTP server timeout in seconds. This function will not
  183. * work with the win32 version. Default value is 10.
  184. * @public
  185. * @type int
  186. */
  187. var $Timeout = 10;
  188. /**
  189. * Sets SMTP class debugging on or off. Default value is false (off).
  190. * @public
  191. * @type bool
  192. */
  193. var $SMTPDebug = false;
  194. /////////////////////////////////////////////////
  195. // PRIVATE VARIABLES
  196. /////////////////////////////////////////////////
  197. /**
  198. * Holds all "To" addresses.
  199. * @type array
  200. */
  201. var $to = array();
  202. /**
  203. * Holds all "CC" addresses.
  204. * @type array
  205. */
  206. var $cc = array();
  207. /**
  208. * Holds all "BCC" addresses.
  209. * @type array
  210. */
  211. var $bcc = array();
  212. /**
  213. * Holds all "Reply-To" addresses.
  214. * @type array
  215. */
  216. var $ReplyTo = array();
  217. /**
  218. * Holds all string and binary attachments.
  219. * @type array
  220. */
  221. var $attachment = array();
  222. /**
  223. * Holds all custom headers.
  224. * @type array
  225. */
  226. var $CustomHeader = array();
  227. /**
  228. * Holds the type of the message.
  229. * @type string
  230. */
  231. var $message_type = "";
  232. /**
  233. * Holds the message boundaries.
  234. * @type string array
  235. */
  236. var $boundary = array();
  237. /////////////////////////////////////////////////
  238. // VARIABLE METHODS
  239. /////////////////////////////////////////////////
  240. /**
  241. * Sets message type to HTML. Returns void.
  242. * @public
  243. * @returns void
  244. */
  245. function IsHTML($bool) {
  246. if($bool == true)
  247. $this->ContentType = "text/html";
  248. else
  249. $this->ContentType = "text/plain";
  250. }
  251. /**
  252. * Sets Mailer to send message using SMTP.
  253. * Returns void.
  254. * @public
  255. * @returns void
  256. */
  257. function IsSMTP() {
  258. $this->Mailer = "smtp";
  259. }
  260. /**
  261. * Sets Mailer to send message using PHP mail() function.
  262. * Returns void.
  263. * @public
  264. * @returns void
  265. */
  266. function IsMail() {
  267. $this->Mailer = "mail";
  268. }
  269. /**
  270. * Sets Mailer to send message using the $Sendmail program.
  271. * Returns void.
  272. * @public
  273. * @returns void
  274. */
  275. function IsSendmail() {
  276. $this->Mailer = "sendmail";
  277. }
  278. /**
  279. * Sets Mailer to send message using the qmail MTA. Returns void.
  280. * @public
  281. * @returns void
  282. */
  283. function IsQmail() {
  284. //$this->Sendmail = "/var/qmail/bin/qmail-inject";
  285. $this->Sendmail = "/var/qmail/bin/sendmail";
  286. $this->Mailer = "sendmail";
  287. }
  288. /////////////////////////////////////////////////
  289. // RECIPIENT METHODS
  290. /////////////////////////////////////////////////
  291. /**
  292. * Adds a "To" address. Returns void.
  293. * @public
  294. * @returns void
  295. */
  296. function AddAddress($address, $name = "") {
  297. $cur = count($this->to);
  298. $this->to[$cur][0] = trim($address);
  299. $this->to[$cur][1] = $name;
  300. }
  301. /**
  302. * Adds a "Cc" address. Note: this function works
  303. * with the SMTP mailer on win32, not with the "mail"
  304. * mailer. This is a PHP bug that has been submitted
  305. * on http://bugs.php.net. The *NIX version of PHP
  306. * functions correctly. Returns void.
  307. * @public
  308. * @returns void
  309. */
  310. function AddCC($address, $name = "") {
  311. $cur = count($this->cc);
  312. $this->cc[$cur][0] = trim($address);
  313. $this->cc[$cur][1] = $name;
  314. }
  315. /**
  316. * Adds a "Bcc" address. Note: this function works
  317. * with the SMTP mailer on win32, not with the "mail"
  318. * mailer. This is a PHP bug that has been submitted
  319. * on http://bugs.php.net. The *NIX version of PHP
  320. * functions correctly.
  321. * Returns void.
  322. * @public
  323. * @returns void
  324. */
  325. function AddBCC($address, $name = "") {
  326. $cur = count($this->bcc);
  327. $this->bcc[$cur][0] = trim($address);
  328. $this->bcc[$cur][1] = $name;
  329. }
  330. /**
  331. * Adds a "Reply-to" address. Returns void.
  332. * @public
  333. * @returns void
  334. */
  335. function AddReplyTo($address, $name = "") {
  336. $cur = count($this->ReplyTo);
  337. $this->ReplyTo[$cur][0] = trim($address);
  338. $this->ReplyTo[$cur][1] = $name;
  339. }
  340. /////////////////////////////////////////////////
  341. // MAIL SENDING METHODS
  342. /////////////////////////////////////////////////
  343. /**
  344. * Creates message and assigns Mailer. If the message is
  345. * not sent successfully then it returns false. Use the ErrorInfo
  346. * variable to view description of the error. Returns bool.
  347. * @public
  348. * @returns bool
  349. */
  350. function Send() {
  351. $header = "";
  352. $body = "";
  353. if((count($this->to) + count($this->cc) + count($this->bcc)) < 1)
  354. {
  355. $this->error_handler("You must provide at least one recipient email address");
  356. return false;
  357. }
  358. // Set whether the message is multipart/alternative
  359. if(!empty($this->AltBody))
  360. $this->ContentType = "multipart/alternative";
  361. // Attach sender information & date
  362. $header = $this->received();
  363. $header .= sprintf("Date: %s%s", $this->rfc_date(), $this->LE);
  364. $header .= $this->create_header();
  365. if(!$body = $this->create_body())
  366. return false;
  367. //echo "<pre>".$header . $body . "</pre>"; // debugging
  368. // Choose the mailer
  369. if($this->Mailer == "sendmail")
  370. {
  371. if(!$this->sendmail_send($header, $body))
  372. return false;
  373. }
  374. elseif($this->Mailer == "mail")
  375. {
  376. if(!$this->mail_send($header, $body))
  377. return false;
  378. }
  379. elseif($this->Mailer == "smtp")
  380. {
  381. if(!$this->smtp_send($header, $body))
  382. return false;
  383. }
  384. else
  385. {
  386. $this->error_handler(sprintf("%s mailer is not supported", $this->Mailer));
  387. return false;
  388. }
  389. return true;
  390. }
  391. /**
  392. * Sends mail message to an assigned queue directory. Has an optional
  393. * sendTime argument. This is used when the user wants the
  394. * message to be sent from the queue at a predetermined time.
  395. * The data must be a valid timestamp like that returned from
  396. * the time() or strtotime() functions. Returns false on failure
  397. * or the message file name if success.
  398. * @public
  399. * @returns string
  400. */
  401. function SendToQueue($queue_path, $send_time = 0) {
  402. $message = array();
  403. $header = "";
  404. $body = "";
  405. // If invalid or empty just set to the current time
  406. if($send_time == 0)
  407. $send_time = time();
  408. if(!is_dir($queue_path))
  409. {
  410. $this->error_handler("The supplied queue directory does not exist");
  411. return false;
  412. }
  413. if((count($this->to) + count($this->cc) + count($this->bcc)) < 1)
  414. {
  415. $this->error_handler("You must provide at least one recipient email address");
  416. return false;
  417. }
  418. // Set whether the message is multipart/alternative
  419. if(!empty($this->AltBody))
  420. $this->ContentType = "multipart/alternative";
  421. $header = $this->create_header();
  422. if(!$body = $this->create_body())
  423. return false;
  424. // Seed randomizer
  425. if(PHP_VERSION<'4.2.0')
  426. {
  427. mt_srand(time());
  428. }
  429. mt_srand();
  430. $msg_id = md5(uniqid(mt_rand()));
  431. $fp = fopen($queue_path . $msg_id . ".pqm", "wb");
  432. if(!$fp)
  433. {
  434. $this->error_handler(sprintf("Could not write to %s directory", $queue_path));
  435. return false;
  436. }
  437. $message[] = sprintf("----START PQM HEADER----%s", $this->LE);
  438. $message[] = sprintf("SendTime: %s%s", $send_time, $this->LE);
  439. $message[] = sprintf("Mailer: %s%s", $this->Mailer, $this->LE);
  440. // Choose the mailer
  441. if($this->Mailer == "sendmail")
  442. {
  443. $message[] = sprintf("Sendmail: %s%s", $this->Sendmail, $this->LE);
  444. $message[] = sprintf("Sender: %s%s", $this->Sender, $this->LE);
  445. }
  446. elseif($this->Mailer == "mail")
  447. {
  448. $message[] = sprintf("Sender: %s%s", $this->Sender, $this->LE);
  449. $message[] = sprintf("Subject: %s%s", $this->Subject, $this->LE);
  450. $message[] = sprintf("to: %s%s", $this->addr_list($this->to), $this->LE);
  451. }
  452. elseif($this->Mailer == "smtp")
  453. {
  454. $message[] = sprintf("Host: %s%s", $this->Host, $this->LE);
  455. $message[] = sprintf("Port: %d%s", $this->Port, $this->LE);
  456. $message[] = sprintf("Helo: %s%s", $this->Helo, $this->LE);
  457. $message[] = sprintf("Timeout: %d%s", $this->Timeout, $this->LE);
  458. if($this->SMTPAuth)
  459. $auth_no = 1;
  460. else
  461. $auth_no = 0;
  462. $message[] = sprintf("SMTPAuth: %d%s", $auth_no, $this->LE);
  463. $message[] = sprintf("Username: %s%s", $this->Username, $this->LE);
  464. $message[] = sprintf("Password: %s%s", $this->Password, $this->LE);
  465. $message[] = sprintf("From: %s%s", $this->From, $this->LE);
  466. $message[] = sprintf("to: %s%s", $this->addr_list($this->to), $this->LE);
  467. $message[] = sprintf("cc: %s%s", $this->addr_list($this->cc), $this->LE);
  468. $message[] = sprintf("bcc: %s%s", $this->addr_list($this->bcc), $this->LE);
  469. }
  470. else
  471. {
  472. $this->error_handler(sprintf("%s mailer is not supported", $this->Mailer));
  473. return false;
  474. }
  475. $message[] = sprintf("----END PQM HEADER----%s", $this->LE); // end of pqm header
  476. $message[] = $header;
  477. $message[] = $body;
  478. fwrite($fp, join("", $message));
  479. return ($msg_id . ".pqm");
  480. }
  481. /**
  482. * Sends mail using the $Sendmail program. Returns bool.
  483. * @private
  484. * @returns bool
  485. */
  486. function sendmail_send($header, $body) {
  487. if ($this->Sender != "")
  488. $sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail, $this->Sender);
  489. else
  490. $sendmail = sprintf("%s -oi -t", $this->Sendmail);
  491. if(!@$mail = popen($sendmail, "w"))
  492. {
  493. $this->error_handler(sprintf("Could not execute %s", $this->Sendmail));
  494. return false;
  495. }
  496. fputs($mail, $header);
  497. fputs($mail, $body);
  498. $result = pclose($mail) >> 8 & 0xFF;
  499. if($result != 0)
  500. {
  501. $this->error_handler(sprintf("Could not execute %s", $this->Sendmail));
  502. return false;
  503. }
  504. return true;
  505. }
  506. /**
  507. * Sends mail using the PHP mail() function. Returns bool.
  508. * @private
  509. * @returns bool
  510. */
  511. function mail_send($header, $body) {
  512. //$to = substr($this->addr_append("To", $this->to), 4, -2);
  513. // Cannot add Bcc's to the $to
  514. $to = $this->to[0][0]; // no extra comma
  515. for($i = 1; $i < count($this->to); $i++)
  516. $to .= sprintf(",%s", $this->to[$i][0]);
  517. if ($this->Sender != "" && PHP_VERSION >= "4.0")
  518. {
  519. $old_from = ini_get("sendmail_from");
  520. ini_set("sendmail_from", $this->Sender);
  521. }
  522. if ($this->Sender != "" && PHP_VERSION >= "4.0.5")
  523. {
  524. // The fifth parameter to mail is only available in PHP >= 4.0.5
  525. $params = sprintf("-oi -f %s", $this->Sender);
  526. $rt = @mail($to, $this->Subject, $body, $header, $params);
  527. }
  528. else
  529. {
  530. $rt = @mail($to, $this->Subject, $body, $header);
  531. }
  532. if (isset($old_from))
  533. ini_set("sendmail_from", $old_from);
  534. if(!$rt)
  535. {
  536. $this->error_handler("Could not instantiate mail()");
  537. return false;
  538. }
  539. return true;
  540. }
  541. /**
  542. * Sends mail via SMTP using PhpSMTP (Author:
  543. * Chris Ryan). Returns bool. Returns false if there is a
  544. * bad MAIL FROM, RCPT, or DATA input.
  545. * @private
  546. * @returns bool
  547. */
  548. function smtp_send($header, $body) {
  549. // Include SMTP class code, but not twice
  550. include_once($this->PluginDir . "class.smtp.php");
  551. $smtp = new SMTP;
  552. $smtp->do_debug = $this->SMTPDebug;
  553. // Try to connect to all SMTP servers
  554. $hosts = explode(";", $this->Host);
  555. $index = 0;
  556. $connection = false;
  557. $smtp_from = "";
  558. $bad_rcpt = array();
  559. $e = "";
  560. // Retry while there is no connection
  561. while($index < count($hosts) && $connection == false)
  562. {
  563. if(strstr($hosts[$index], ":"))
  564. list($host, $port) = explode(":", $hosts[$index]);
  565. else
  566. {
  567. $host = $hosts[$index];
  568. $port = $this->Port;
  569. }
  570. if($smtp->Connect($host, $port, $this->Timeout))
  571. $connection = true;
  572. //printf("%s host could not connect<br>", $hosts[$index]); //debug only
  573. $index++;
  574. }
  575. if(!$connection)
  576. {
  577. $this->error_handler("SMTP Error: could not connect to SMTP host server(s)");
  578. return false;
  579. }
  580. // Must perform HELO before authentication
  581. $smtp->Hello($this->Helo);
  582. // If user requests SMTP authentication
  583. if($this->SMTPAuth)
  584. {
  585. if(!$smtp->Authenticate($this->Username, $this->Password))
  586. {
  587. $this->error_handler("SMTP Error: Could not authenticate");
  588. return false;
  589. }
  590. }
  591. if ($this->Sender == "")
  592. $smtp_from = $this->From;
  593. else
  594. $smtp_from = $this->Sender;
  595. if(!$smtp->Mail(sprintf("<%s>", $smtp_from)))
  596. {
  597. $e = sprintf("SMTP Error: From address [%s] failed", $smtp_from);
  598. $this->error_handler($e);
  599. return false;
  600. }
  601. // Attempt to send attach all recipients
  602. for($i = 0; $i < count($this->to); $i++)
  603. {
  604. if(!$smtp->Recipient(sprintf("<%s>", $this->to[$i][0])))
  605. $bad_rcpt[] = $this->to[$i][0];
  606. }
  607. for($i = 0; $i < count($this->cc); $i++)
  608. {
  609. if(!$smtp->Recipient(sprintf("<%s>", $this->cc[$i][0])))
  610. $bad_rcpt[] = $this->cc[$i][0];
  611. }
  612. for($i = 0; $i < count($this->bcc); $i++)
  613. {
  614. if(!$smtp->Recipient(sprintf("<%s>", $this->bcc[$i][0])))
  615. $bad_rcpt[] = $this->bcc[$i][0];
  616. }
  617. // Create error message
  618. if(count($bad_rcpt) > 0)
  619. {
  620. for($i = 0; $i < count($bad_rcpt); $i++)
  621. {
  622. if($i != 0)
  623. $e .= ", ";
  624. $e .= $bad_rcpt[$i];
  625. }
  626. $e = sprintf("SMTP Error: The following recipients failed [%s]", $e);
  627. $this->error_handler($e);
  628. return false;
  629. }
  630. if(!$smtp->Data(sprintf("%s%s", $header, $body)))
  631. {
  632. $this->error_handler("SMTP Error: Data not accepted");
  633. return false;
  634. }
  635. $smtp->Quit();
  636. return true;
  637. }
  638. /////////////////////////////////////////////////
  639. // MESSAGE CREATION METHODS
  640. /////////////////////////////////////////////////
  641. /**
  642. * Creates recipient headers. Returns string.
  643. * @private
  644. * @returns string
  645. */
  646. function addr_append($type, $addr) {
  647. $addr_str = $type . ": ";
  648. $addr_str .= $this->addr_format($addr[0]);
  649. if(count($addr) > 1)
  650. {
  651. for($i = 1; $i < count($addr); $i++)
  652. {
  653. $addr_str .= sprintf(", %s", $this->addr_format($addr[$i]));
  654. }
  655. $addr_str .= $this->LE;
  656. }
  657. else
  658. $addr_str .= $this->LE;
  659. return($addr_str);
  660. }
  661. /**
  662. * Creates a semicolon delimited list for use in pqm files.
  663. * @private
  664. * @returns string
  665. */
  666. function addr_list($list_array) {
  667. $addr_list = "";
  668. for($i = 0; $i < count($list_array); $i++)
  669. {
  670. if($i > 0)
  671. $addr_list .= ";";
  672. $addr_list .= $list_array[$i][0];
  673. }
  674. return $addr_list;
  675. }
  676. /**
  677. * Formats an address correctly.
  678. * @private
  679. * @returns string
  680. */
  681. function addr_format($addr) {
  682. if(empty($addr[1]))
  683. $formatted = $addr[0];
  684. else
  685. $formatted = sprintf('"%s" <%s>', addslashes($addr[1]), $addr[0]);
  686. return $formatted;
  687. }
  688. /**
  689. * Wraps message for use with mailers that do not
  690. * automatically perform wrapping and for quoted-printable.
  691. * Original written by philippe. Returns string.
  692. * @private
  693. * @returns string
  694. */
  695. function word_wrap($message, $length, $qp_mode = false) {
  696. if ($qp_mode)
  697. $soft_break = sprintf(" =%s", $this->LE);
  698. else
  699. $soft_break = $this->LE;
  700. $message = $this->fix_eol($message);
  701. if (substr($message, -1) == $this->LE)
  702. $message = substr($message, 0, -1);
  703. $line = explode($this->LE, $message);
  704. $message = "";
  705. for ($i=0 ;$i < count($line); $i++)
  706. {
  707. $line_part = explode(" ", $line[$i]);
  708. $buf = "";
  709. for ($e = 0; $e<count($line_part); $e++)
  710. {
  711. $word = $line_part[$e];
  712. if ($qp_mode and (strlen($word) > $length))
  713. {
  714. $space_left = $length - strlen($buf) - 1;
  715. if ($e != 0)
  716. {
  717. if ($space_left > 20)
  718. {
  719. $len = $space_left;
  720. if (substr($word, $len - 1, 1) == "=")
  721. $len--;
  722. elseif (substr($word, $len - 2, 1) == "=")
  723. $len -= 2;
  724. $part = substr($word, 0, $len);
  725. $word = substr($word, $len);
  726. $buf .= " " . $part;
  727. $message .= $buf . sprintf("=%s", $this->LE);
  728. }
  729. else
  730. {
  731. $message .= $buf . $soft_break;
  732. }
  733. $buf = "";
  734. }
  735. while (strlen($word) > 0)
  736. {
  737. $len = $length;
  738. if (substr($word, $len - 1, 1) == "=")
  739. $len--;
  740. elseif (substr($word, $len - 2, 1) == "=")
  741. $len -= 2;
  742. $part = substr($word, 0, $len);
  743. $word = substr($word, $len);
  744. if (strlen($word) > 0)
  745. $message .= $part . sprintf("=%s", $this->LE);
  746. else
  747. $buf = $part;
  748. }
  749. }
  750. else
  751. {
  752. $buf_o = $buf;
  753. if ($e == 0)
  754. $buf .= $word;
  755. else
  756. $buf .= " " . $word;
  757. if (strlen($buf) > $length and $buf_o != "")
  758. {
  759. $message .= $buf_o . $soft_break;
  760. $buf = $word;
  761. }
  762. }
  763. }
  764. $message .= $buf . $this->LE;
  765. }
  766. return ($message);
  767. }
  768. /**
  769. * Assembles message header. Returns a string if successful
  770. * or false if unsuccessful.
  771. * @private
  772. * @returns string
  773. */
  774. function create_header() {
  775. $header = array();
  776. // Set the boundaries
  777. $uniq_id = md5(uniqid(time()));
  778. $this->boundary[1] = "b1_" . $uniq_id;
  779. $this->boundary[2] = "b2_" . $uniq_id;
  780. // To be created automatically by mail()
  781. if(($this->Mailer != "mail") && (count($this->to) > 0))
  782. $header[] = $this->addr_append("To", $this->to);
  783. $header[] = sprintf("From: \"%s\" <%s>%s", addslashes($this->FromName),
  784. trim($this->From), $this->LE);
  785. if(count($this->cc) > 0)
  786. $header[] = $this->addr_append("Cc", $this->cc);
  787. // sendmail and mail() extract Bcc from the header before sending
  788. if((($this->Mailer == "sendmail") || ($this->Mailer == "mail")) && (count($this->bcc) > 0))
  789. $header[] = $this->addr_append("Bcc", $this->bcc);
  790. if(count($this->ReplyTo) > 0)
  791. $header[] = $this->addr_append("Reply-to", $this->ReplyTo);
  792. // mail() sets the subject itself
  793. if($this->Mailer != "mail")
  794. $header[] = sprintf("Subject: %s%s", trim($this->Subject), $this->LE);
  795. $header[] = sprintf("X-Priority: %d%s", $this->Priority, $this->LE);
  796. $header[] = sprintf("X-Mailer: phpmailer [version %s]%s", $this->Version, $this->LE);
  797. $header[] = sprintf("Return-Path: %s%s", trim($this->From), $this->LE);
  798. if($this->ConfirmReadingTo != "")
  799. $header[] = sprintf("Disposition-Notification-To: <%s>%s",
  800. trim($this->ConfirmReadingTo), $this->LE);
  801. // Add custom headers
  802. for($index = 0; $index < count($this->CustomHeader); $index++)
  803. $header[] = sprintf("%s%s", $this->CustomHeader[$index], $this->LE);
  804. if($this->UseMSMailHeaders)
  805. $header[] = $this->AddMSMailHeaders();
  806. $header[] = sprintf("MIME-Version: 1.0%s", $this->LE);
  807. // Determine what type of message this is
  808. if(count($this->attachment) < 1 && strlen($this->AltBody) < 1)
  809. $this->message_type = "plain";
  810. else
  811. {
  812. if(count($this->attachment) > 0)
  813. $this->message_type = "attachments";
  814. if(strlen($this->AltBody) > 0 && count($this->attachment) < 1)
  815. $this->message_type = "alt";
  816. if(strlen($this->AltBody) > 0 && count($this->attachment) > 0)
  817. $this->message_type = "alt_attachments";
  818. }
  819. switch($this->message_type)
  820. {
  821. case "plain":
  822. $header[] = sprintf("Content-Transfer-Encoding: %s%s",
  823. $this->Encoding, $this->LE);
  824. $header[] = sprintf("Content-Type: %s; charset = \"%s\"",
  825. $this->ContentType, $this->CharSet);
  826. break;
  827. case "attachments":
  828. case "alt_attachments":
  829. if($this->EmbeddedImageCount() > 0)
  830. {
  831. $header[] = sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s",
  832. "multipart/related", $this->LE, $this->LE,
  833. $this->boundary[1], $this->LE);
  834. }
  835. else
  836. {
  837. $header[] = sprintf("Content-Type: %s;%s",
  838. "multipart/mixed", $this->LE);
  839. $header[] = sprintf("\tboundary=\"%s\"%s", $this->boundary[1], $this->LE);
  840. }
  841. break;
  842. case "alt":
  843. $header[] = sprintf("Content-Type: %s;%s",
  844. "multipart/alternative", $this->LE);
  845. $header[] = sprintf("\tboundary=\"%s\"%s", $this->boundary[1], $this->LE);
  846. break;
  847. }
  848. // No additional lines when using mail() function
  849. if($this->Mailer != "mail")
  850. $header[] = $this->LE.$this->LE;
  851. return(join("", $header));
  852. }
  853. /**
  854. * Assembles the message body. Returns a string if successful
  855. * or false if unsuccessful.
  856. * @private
  857. * @returns string
  858. */
  859. function create_body() {
  860. $body = array();
  861. // wordwrap the message body if set
  862. if($this->WordWrap > 0)
  863. $this->Body = $this->word_wrap($this->Body, $this->WordWrap);
  864. switch($this->message_type)
  865. {
  866. case "alt":
  867. // Return text of body
  868. $bndry = new Boundary($this->boundary[1]);
  869. $bndry->CharSet = $this->CharSet;
  870. $bndry->Encoding = $this->Encoding;
  871. $body[] = $bndry->GetSource();
  872. $body[] = sprintf("%s%s", $this->AltBody, $this->LE.$this->LE);
  873. $bndry = new Boundary($this->boundary[1]);
  874. $bndry->CharSet = $this->CharSet;
  875. $bndry->ContentType = "text/html";
  876. $bndry->Encoding = $this->Encoding;
  877. $body[] = $bndry->GetSource();
  878. $body[] = sprintf("%s%s", $this->Body, $this->LE.$this->LE);
  879. // End the boundary
  880. $body[] = sprintf("%s--%s--%s", $this->LE,
  881. $this->boundary[1], $this->LE.$this->LE);
  882. break;
  883. case "plain":
  884. $body[] = $this->Body;
  885. break;
  886. case "attachments":
  887. $bndry = new Boundary($this->boundary[1]);
  888. $bndry->CharSet = $this->CharSet;
  889. $bndry->ContentType = $this->ContentType;
  890. $bndry->Encoding = $this->Encoding;
  891. $body[] = sprintf("%s%s%s%s", $bndry->GetSource(false), $this->LE,
  892. $this->Body, $this->LE);
  893. if(!$body[] = $this->attach_all())
  894. return false;
  895. break;
  896. case "alt_attachments":
  897. $body[] = sprintf("--%s%s", $this->boundary[1], $this->LE);
  898. $body[] = sprintf("Content-Type: %s;%s" .
  899. "\tboundary=\"%s\"%s",
  900. "multipart/alternative", $this->LE,
  901. $this->boundary[2], $this->LE.$this->LE);
  902. // Create text body
  903. $bndry = new Boundary($this->boundary[2]);
  904. $bndry->CharSet = $this->CharSet;
  905. $bndry->ContentType = "text/plain";
  906. $bndry->Encoding = $this->Encoding;
  907. $body[] = $bndry->GetSource() . $this->LE;
  908. $body[] = sprintf("%s%s", $this->AltBody, $this->LE.$this->LE);
  909. // Create the HTML body
  910. $bndry = new Boundary($this->boundary[2]);
  911. $bndry->CharSet = $this->CharSet;
  912. $bndry->ContentType = "text/html";
  913. $bndry->Encoding = $this->Encoding;
  914. $body[] = $bndry->GetSource() . $this->LE;
  915. $body[] = sprintf("%s%s", $this->Body, $this->LE.$this->LE);
  916. $body[] = sprintf("%s--%s--%s", $this->LE,
  917. $this->boundary[2], $this->LE.$this->LE);
  918. if(!$body[] = $this->attach_all())
  919. return false;
  920. break;
  921. }
  922. // Add the encode string code here
  923. $sBody = join("", $body);
  924. $sBody = $this->encode_string($sBody, $this->Encoding);
  925. return $sBody;
  926. }
  927. /////////////////////////////////////////////////
  928. // ATTACHMENT METHODS
  929. /////////////////////////////////////////////////
  930. /**
  931. * Adds an attachment from a path on the filesystem.
  932. * Checks if attachment is valid and then adds
  933. * the attachment to the list.
  934. * Returns false if the file could not be found
  935. * or accessed.
  936. * @public
  937. * @returns bool
  938. */
  939. function AddAttachment($path, $name = "", $encoding = "base64", $type = "application/octet-stream") {
  940. if(!@is_file($path))
  941. {
  942. $this->error_handler(sprintf("Could not access [%s] file", $path));
  943. return false;
  944. }
  945. $filename = basename($path);
  946. if($name == "")
  947. $name = $filename;
  948. // Append to $attachment array
  949. $cur = count($this->attachment);
  950. $this->attachment[$cur][0] = $path;
  951. $this->attachment[$cur][1] = $filename;
  952. $this->attachment[$cur][2] = $name;
  953. $this->attachment[$cur][3] = $encoding;
  954. $this->attachment[$cur][4] = $type;
  955. $this->attachment[$cur][5] = false; // isStringAttachment
  956. $this->attachment[$cur][6] = "attachment";
  957. $this->attachment[$cur][7] = 0;
  958. return true;
  959. }
  960. /**
  961. * Attaches all fs, string, and binary attachments to the message.
  962. * Returns a string if successful or false if unsuccessful.
  963. * @private
  964. * @returns string
  965. */
  966. function attach_all() {
  967. // Return text of body
  968. $mime = array();
  969. // Add all attachments
  970. for($i = 0; $i < count($this->attachment); $i++)
  971. {
  972. // Check for string attachment
  973. $isString = $this->attachment[$i][5];
  974. if ($isString)
  975. {
  976. $string = $this->attachment[$i][0];
  977. }
  978. else
  979. {
  980. $path = $this->attachment[$i][0];
  981. }
  982. $filename = $this->attachment[$i][1];
  983. $name = $this->attachment[$i][2];
  984. $encoding = $this->attachment[$i][3];
  985. $type = $this->attachment[$i][4];
  986. $disposition = $this->attachment[$i][6];
  987. $cid = $this->attachment[$i][7];
  988. $mime[] = sprintf("--%s%s", $this->boundary[1], $this->LE);
  989. $mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $name, $this->LE);
  990. $mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE);
  991. if($disposition == "inline")
  992. $mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE);
  993. else
  994. $mime[] = sprintf("Content-ID: <%s>%s", $name, $this->LE);
  995. $mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s",
  996. $disposition, $name, $this->LE.$this->LE);
  997. // Encode as string attachment
  998. if($isString)
  999. {
  1000. if(!$mime[] = sprintf("%s%s", $this->encode_string($string, $encoding),
  1001. $this->LE.$this->LE))
  1002. return false;
  1003. }
  1004. else
  1005. {
  1006. if(!$mime[] = sprintf("%s%s", $this->encode_file($path, $encoding),
  1007. $this->LE.$this->LE))
  1008. return false;
  1009. $mime[] = sprintf("--%s--%s", $this->boundary[1], $this->LE);
  1010. }
  1011. }
  1012. return(join("", $mime));
  1013. }
  1014. /**
  1015. * Encodes attachment in requested format. Returns a
  1016. * string if successful or false if unsuccessful.
  1017. * @private
  1018. * @returns string
  1019. */
  1020. function encode_file ($path, $encoding = "base64") {
  1021. if(!@$fd = fopen($path, "rb"))
  1022. {
  1023. $this->error_handler(sprintf("File Error: Could not open file %s", $path));
  1024. return false;
  1025. }
  1026. $file = fread($fd, filesize($path));
  1027. $encoded = $this->encode_string($file, $encoding);
  1028. fclose($fd);
  1029. return($encoded);
  1030. }
  1031. /**
  1032. * Encodes string to requested format. Returns a
  1033. * string if successful or false if unsuccessful.
  1034. * @private
  1035. * @returns string
  1036. */
  1037. function encode_string ($str, $encoding = "base64") {
  1038. switch(strtolower($encoding)) {
  1039. case "base64":
  1040. // chunk_split is found in PHP >= 3.0.6
  1041. $encoded = chunk_split(base64_encode($str));
  1042. break;
  1043. case "7bit":
  1044. case "8bit":
  1045. $encoded = $this->fix_eol($str);
  1046. if (substr($encoded, -2) != $this->LE)
  1047. $encoded .= $this->LE;
  1048. break;
  1049. case "binary":
  1050. $encoded = $str;
  1051. break;
  1052. case "quoted-printable":
  1053. $encoded = $this->encode_qp($str);
  1054. break;
  1055. default:
  1056. $this->error_handler(sprintf("Unknown encoding: %s", $encoding));
  1057. return false;
  1058. }
  1059. return($encoded);
  1060. }
  1061. /**
  1062. * Encode string to quoted-printable. Returns a string.
  1063. * @private
  1064. * @returns string
  1065. */
  1066. function encode_qp ($str) {
  1067. $encoded = $this->fix_eol($str);
  1068. if (substr($encoded, -2) != $this->LE)
  1069. $encoded .= $this->LE;
  1070. // Replace every high ascii, control and = characters
  1071. $encoded = preg_replace("/([\001-\010\013\014\016-\037\075\177-\377])/e",
  1072. "'='.sprintf('%02X', ord('\\1'))", $encoded);
  1073. // Replace every spaces and tabs when it's the last character on a line
  1074. $encoded = preg_replace("/([\011\040])".$this->LE."/e",
  1075. "'='.sprintf('%02X', ord('\\1')).'".$this->LE."'", $encoded);
  1076. // Maximum line length of 76 characters before CRLF (74 + space + '=')
  1077. $encoded = $this->word_wrap($encoded, 74, true);
  1078. return $encoded;
  1079. }
  1080. /**
  1081. * Adds a string or binary attachment (non-filesystem) to the list.
  1082. * This method can be used to attach ascii or binary data,
  1083. * such as a BLOB record from a database.
  1084. * @public
  1085. * @returns void
  1086. */
  1087. function AddStringAttachment($string, $filename, $encoding = "base64", $type = "application/octet-stream") {
  1088. // Append to $attachment array
  1089. $cur = count($this->attachment);
  1090. $this->attachment[$cur][0] = $string;
  1091. $this->attachment[$cur][1] = $filename;
  1092. $this->attachment[$cur][2] = $filename;
  1093. $this->attachment[$cur][3] = $encoding;
  1094. $this->attachment[$cur][4] = $type;
  1095. $this->attachment[$cur][5] = true; // isString
  1096. $this->attachment[$cur][6] = "attachment";
  1097. $this->attachment[$cur][7] = 0;
  1098. }
  1099. /**
  1100. * Adds an embedded attachment. This can include images, sounds, and
  1101. * just about any other document.
  1102. * @param cid this is the Content Id of the attachment. Use this to identify
  1103. * the Id for accessing the image in an HTML form.
  1104. * @public
  1105. * @returns bool
  1106. */
  1107. function AddEmbeddedImage($path, $cid, $name = "", $encoding = "base64", $type = "application/octet-stream") {
  1108. if(!@is_file($path))
  1109. {
  1110. $this->error_handler(sprintf("Could not access [%s] file", $path));
  1111. return false;
  1112. }
  1113. $filename = basename($path);
  1114. if($name == "")
  1115. $name = $filename;
  1116. // Append to $attachment array
  1117. $cur = count($this->attachment);
  1118. $this->attachment[$cur][0] = $path;
  1119. $this->attachment[$cur][1] = $filename;
  1120. $this->attachment[$cur][2] = $name;
  1121. $this->attachment[$cur][3] = $encoding;
  1122. $this->attachment[$cur][4] = $type;
  1123. $this->attachment[$cur][5] = false; // isStringAttachment
  1124. $this->attachment[$cur][6] = "inline";
  1125. $this->attachment[$cur][7] = $cid;
  1126. return true;
  1127. }
  1128. /**
  1129. * Returns the number of embedded images in an email.
  1130. * @private
  1131. * @returns int
  1132. */
  1133. function EmbeddedImageCount() {
  1134. $ret = 0;
  1135. for($i = 0; $i < count($this->attachment); $i++)
  1136. {
  1137. if($this->attachment[$i][6] == "inline")
  1138. $ret++;
  1139. }
  1140. return $ret;
  1141. }
  1142. /////////////////////////////////////////////////
  1143. // MESSAGE RESET METHODS
  1144. /////////////////////////////////////////////////
  1145. /**
  1146. * Clears all recipients assigned in the TO array. Returns void.
  1147. * @public
  1148. * @returns void
  1149. */
  1150. function ClearAddresses() {
  1151. $this->to = array();
  1152. }
  1153. /**
  1154. * Clears all recipients assigned in the CC array. Returns void.
  1155. * @public
  1156. * @returns void
  1157. */
  1158. function ClearCCs() {
  1159. $this->cc = array();
  1160. }
  1161. /**
  1162. * Clears all recipients assigned in the BCC array. Returns void.
  1163. * @public
  1164. * @returns void
  1165. */
  1166. function ClearBCCs() {
  1167. $this->bcc = array();
  1168. }
  1169. /**
  1170. * Clears all recipients assigned in the ReplyTo array. Returns void.
  1171. * @public
  1172. * @returns void
  1173. */
  1174. function ClearReplyTos() {
  1175. $this->ReplyTo = array();
  1176. }
  1177. /**
  1178. * Clears all recipients assigned in the TO, CC and BCC
  1179. * array. Returns void.
  1180. * @public
  1181. * @returns void
  1182. */
  1183. function ClearAllRecipients() {
  1184. $this->to = array();
  1185. $this->cc = array();
  1186. $this->bcc = array();
  1187. }
  1188. /**
  1189. * Clears all previously set filesystem, string, and binary
  1190. * attachments. Returns void.
  1191. * @public
  1192. * @returns void
  1193. */
  1194. function ClearAttachments() {
  1195. $this->attachment = array();
  1196. }
  1197. /**
  1198. * Clears all custom headers. Returns void.
  1199. * @public
  1200. * @returns void
  1201. */
  1202. function ClearCustomHeaders() {
  1203. $this->CustomHeader = array();
  1204. }
  1205. /////////////////////////////////////////////////
  1206. // MISCELLANEOUS METHODS
  1207. /////////////////////////////////////////////////
  1208. /**
  1209. * Adds the error message to the error container.
  1210. * Returns void.
  1211. * @private
  1212. * @returns void
  1213. */
  1214. function error_handler($msg) {
  1215. $this->ErrorInfo = $msg;
  1216. }
  1217. /**
  1218. * Returns the proper RFC 822 formatted date. Returns string.
  1219. * @private
  1220. * @returns string
  1221. */
  1222. function rfc_date() {
  1223. $tz = date("Z");
  1224. $tzs = ($tz < 0) ? "-" : "+";
  1225. $tz = abs($tz);
  1226. $tz = ($tz/3600)*100 + ($tz%3600)/60;
  1227. $date = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
  1228. return $date;
  1229. }
  1230. /**
  1231. * Returns received header for message tracing. Returns string.
  1232. * @private
  1233. * @returns string
  1234. */
  1235. function received() {
  1236. // Check for vars because they might not exist. Possibly
  1237. // write a small retrieval function (that mailer can use too!)
  1238. $str = sprintf("Received: from phpmailer ([%s]) by %s " .
  1239. "with HTTP;%s\t %s%s",
  1240. $this->get_server_var("REMOTE_ADDR"),
  1241. $this->get_server_var("SERVER_NAME"),
  1242. $this->LE,
  1243. $this->rfc_date(),
  1244. $this->LE);
  1245. return $str;
  1246. }
  1247. /**
  1248. * Returns the appropriate server variable. Should work with both
  1249. * PHP 4.1.0+ as well as older versions. Returns an empty string
  1250. * if nothing is found.
  1251. * @private
  1252. * @returns mixed
  1253. */
  1254. function get_server_var($varName) {
  1255. global $HTTP_SERVER_VARS;
  1256. global $HTTP_ENV_VARS;
  1257. if(!isset($_SERVER))
  1258. {
  1259. $_SERVER = $HTTP_SERVER_VARS;
  1260. if(!isset($_SERVER["REMOTE_ADDR"]))
  1261. $_SERVER = $HTTP_ENV_VARS; // must be Apache
  1262. }
  1263. if(isset($_SERVER[$varName]))
  1264. return $_SERVER[$varName];
  1265. else
  1266. return "";
  1267. }
  1268. /**
  1269. * Changes every end of line from CR or LF to CRLF. Returns string.
  1270. * @private
  1271. * @returns string
  1272. */
  1273. function fix_eol($str) {
  1274. $str = str_replace("\r\n", "\n", $str);
  1275. $str = str_replace("\r", "\n", $str);
  1276. $str = str_replace("\n", $this->LE, $str);
  1277. return $str;
  1278. }
  1279. /**
  1280. * Adds a custom header. Returns void.
  1281. * @public
  1282. * @returns void
  1283. */
  1284. function AddCustomHeader($custom_header) {
  1285. $this->CustomHeader[] = $custom_header;
  1286. }
  1287. /**
  1288. * Adds all the Microsoft message headers. Returns string.
  1289. * @private
  1290. * @returns string
  1291. */
  1292. function AddMSMailHeaders() {
  1293. $MSHeader = "";
  1294. if($this->Priority == 1)
  1295. $MSPriority = "High";
  1296. elseif($this->Priority == 5)
  1297. $MSPriority = "Low";
  1298. else
  1299. $MSPriority = "Medium";
  1300. $MSHeader .= sprintf("X-MSMail-Priority: %s%s", $MSPriority, $this->LE);
  1301. $MSHeader .= sprintf("Importance: %s%s", $MSPriority, $this->LE);
  1302. return($MSHeader);
  1303. }
  1304. }
  1305. /**
  1306. * Boundary - MIME message boundary class
  1307. * @author Brent R. Matzelle
  1308. */
  1309. class Boundary
  1310. {
  1311. /**
  1312. * Sets the boundary ID.
  1313. * @private
  1314. * @type string
  1315. */
  1316. var $ID = 0;
  1317. /**
  1318. * Sets the boundary Content Type.
  1319. * @public
  1320. * @type string
  1321. */
  1322. var $ContentType = "text/plain";
  1323. /**
  1324. * Sets the Encoding.
  1325. * @public
  1326. * @type string
  1327. */
  1328. var $Encoding = "";
  1329. /**
  1330. * Sets an attachment disposition.
  1331. * @public
  1332. * @type string
  1333. */
  1334. var $Disposition = "";
  1335. /**
  1336. * Sets an attachment file name.
  1337. * @public
  1338. * @type string
  1339. */
  1340. var $FileName = "";
  1341. /**
  1342. * Sets the Char set.
  1343. * @public
  1344. * @type string
  1345. */
  1346. var $CharSet = "";
  1347. /**
  1348. * Sets the line endings of the message. Default is "\n";
  1349. * @public
  1350. * @type string
  1351. */
  1352. var $LE = "\n";
  1353. /**
  1354. * Main constructor.
  1355. */
  1356. function Boundary($boundary_id) {
  1357. $this->ID = $boundary_id;
  1358. }
  1359. /**
  1360. * Returns the source of the boundary.
  1361. * @public
  1362. * @returns string
  1363. */
  1364. function GetSource($bLineEnding = true) {
  1365. $ret = array();
  1366. $mime[] = sprintf("--%s%s", $this->ID, $this->LE);
  1367. $mime[] = sprintf("Content-Type: %s; charset = \"%s\"%s",
  1368. $this->ContentType, $this->CharSet, $this->LE);
  1369. //$mime[] = sprintf("Content-Transfer-Encoding: %s%s", $this->Encoding,
  1370. // $this->LE);
  1371. if(strlen($this->Disposition) > 0)
  1372. {
  1373. $mime[] = sprintf("Content-Disposition: %s;");
  1374. if(strlen($this->FileName) > 0)
  1375. $mime[] = sprinf("filename=\"%s\"", $this->$this->FileName);
  1376. }
  1377. if($bLineEnding)
  1378. $mime[] = $this->LE;
  1379. return join("", $mime);
  1380. }
  1381. }
  1382. //初使化邮件发送
  1383. function FirstSendMail($r,$title,$msgtext){
  1384. global $ecms_config;
  1385. $r['fromemail']=RepPostVar($r['fromemail']);
  1386. $r['emailname']=RepPostVar($r['emailname']);
  1387. $mailer=new phpmailer();
  1388. if($r['sendmailtype']==1)//smtp
  1389. {
  1390. $mailer->IsSMTP();
  1391. $mailer->Host=$r['smtphost'];
  1392. //端口
  1393. if($r['smtpport'])
  1394. {
  1395. $mailer->Port=$r['smtpport'];
  1396. }
  1397. //SMTP服务器需要认证
  1398. if($r['loginemail'])
  1399. {
  1400. $mailer->SMTPAuth=true;
  1401. $mailer->Username=$r['emailusername'];
  1402. $mailer->Password=$r['emailpassword'];
  1403. }
  1404. }
  1405. else//mail函数
  1406. {
  1407. $mailer->IsMail();
  1408. }
  1409. $mailer->From=$r['fromemail'];
  1410. $mailer->FromName=$r['emailname'];
  1411. $mailer->IsHTML(true);
  1412. $mailer->Subject=stripSlashes($title);//标题
  1413. $mailer->Body=stripSlashes(nl2br(RepFieldtextNbsp($msgtext)));//内容
  1414. //$mailer->CharSet("gbk");
  1415. $mailer->CharSet=$ecms_config['sets']['pagechar']?$ecms_config['sets']['pagechar']:'gbk';
  1416. return $mailer;
  1417. }
  1418. //发送邮件
  1419. function EcmsToSendMail($email,$title,$text){
  1420. global $empire,$dbtbpre;
  1421. $pr=$empire->fetch1("select sendmailtype,smtphost,fromemail,loginemail,emailusername,emailpassword,smtpport,emailname from {$dbtbpre}enewspublic limit 1");
  1422. //发送初使化
  1423. $mailer=FirstSendMail($pr,$title,$text);
  1424. if(is_array($email))
  1425. {
  1426. $count=count($email);
  1427. for($i=0;$i<$count;$i++)
  1428. {
  1429. $email[$i]=RepPostVar($email[$i]);
  1430. if($email[$i])
  1431. {
  1432. $mailer->AddAddress($email[$i]);
  1433. }
  1434. }
  1435. }
  1436. else
  1437. {
  1438. $email=RepPostVar($email);
  1439. $mailer->AddAddress($email);
  1440. }
  1441. if(!$mailer->Send())
  1442. {
  1443. return false;
  1444. }
  1445. return true;
  1446. }
  1447. ?>