create-berna-stencil 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (365) hide show
  1. package/.env.example +8 -0
  2. package/.gitignore +2 -1
  3. package/README.md +1 -5
  4. package/bin/create.js +2 -1
  5. package/package.json +71 -70
  6. package/src/api/vendor/autoload.php +22 -22
  7. package/src/api/vendor/composer/ClassLoader.php +579 -579
  8. package/src/api/vendor/composer/InstalledVersions.php +396 -396
  9. package/src/api/vendor/composer/LICENSE +21 -21
  10. package/src/api/vendor/composer/autoload_classmap.php +15 -15
  11. package/src/api/vendor/composer/autoload_files.php +12 -12
  12. package/src/api/vendor/composer/autoload_namespaces.php +9 -9
  13. package/src/api/vendor/composer/autoload_psr4.php +16 -16
  14. package/src/api/vendor/composer/autoload_real.php +50 -50
  15. package/src/api/vendor/composer/autoload_static.php +86 -86
  16. package/src/api/vendor/composer/installed.json +582 -582
  17. package/src/api/vendor/composer/installed.php +86 -86
  18. package/src/api/vendor/composer/platform_check.php +25 -25
  19. package/src/api/vendor/graham-campbell/result-type/.gitattributes +9 -0
  20. package/src/api/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
  21. package/src/api/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
  22. package/src/api/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
  23. package/src/api/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
  24. package/src/api/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
  25. package/src/api/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
  26. package/src/api/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
  27. package/src/api/vendor/graham-campbell/result-type/LICENSE +21 -0
  28. package/src/api/vendor/graham-campbell/result-type/README.md +42 -0
  29. package/src/api/vendor/graham-campbell/result-type/composer.json +33 -0
  30. package/src/api/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
  31. package/src/api/vendor/graham-campbell/result-type/src/Error.php +121 -0
  32. package/src/api/vendor/graham-campbell/result-type/src/Result.php +69 -0
  33. package/src/api/vendor/graham-campbell/result-type/src/Success.php +120 -0
  34. package/src/api/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
  35. package/src/api/vendor/phpmailer/phpmailer/.codecov.yml +21 -0
  36. package/src/api/vendor/phpmailer/phpmailer/.editorconfig +15 -0
  37. package/src/api/vendor/phpmailer/phpmailer/.gitattributes +17 -0
  38. package/src/api/vendor/phpmailer/phpmailer/.github/FUNDING.yml +6 -0
  39. package/src/api/vendor/phpmailer/phpmailer/.github/ISSUE_TEMPLATE/bug_report.md +23 -0
  40. package/src/api/vendor/phpmailer/phpmailer/.github/actions/build-docs/Dockerfile +15 -0
  41. package/src/api/vendor/phpmailer/phpmailer/.github/actions/build-docs/entrypoint.sh +5 -0
  42. package/src/api/vendor/phpmailer/phpmailer/.github/dependabot.yml +21 -0
  43. package/src/api/vendor/phpmailer/phpmailer/.github/workflows/docs.yaml +30 -0
  44. package/src/api/vendor/phpmailer/phpmailer/.github/workflows/scorecards.yml +61 -0
  45. package/src/api/vendor/phpmailer/phpmailer/.github/workflows/tests.yml +237 -0
  46. package/src/api/vendor/phpmailer/phpmailer/.phan/config.php +41 -0
  47. package/src/api/vendor/phpmailer/phpmailer/COMMITMENT +46 -0
  48. package/src/api/vendor/phpmailer/phpmailer/LICENSE +502 -0
  49. package/src/api/vendor/phpmailer/phpmailer/README.md +232 -0
  50. package/src/api/vendor/phpmailer/phpmailer/SECURITY.md +37 -0
  51. package/src/api/vendor/phpmailer/phpmailer/SMTPUTF8.md +48 -0
  52. package/src/api/vendor/phpmailer/phpmailer/UPGRADING.md +125 -0
  53. package/src/api/vendor/phpmailer/phpmailer/VERSION +1 -0
  54. package/src/api/vendor/phpmailer/phpmailer/changelog.md +1122 -0
  55. package/src/api/vendor/phpmailer/phpmailer/composer.json +84 -0
  56. package/src/api/vendor/phpmailer/phpmailer/docs/README.md +9 -0
  57. package/src/api/vendor/phpmailer/phpmailer/examples/DKIM_gen_keys.phps +81 -0
  58. package/src/api/vendor/phpmailer/phpmailer/examples/DKIM_sign.phps +46 -0
  59. package/src/api/vendor/phpmailer/phpmailer/examples/README.md +96 -0
  60. package/src/api/vendor/phpmailer/phpmailer/examples/azure_xoauth2.phps +126 -0
  61. package/src/api/vendor/phpmailer/phpmailer/examples/callback.phps +76 -0
  62. package/src/api/vendor/phpmailer/phpmailer/examples/contactform-ajax.phps +146 -0
  63. package/src/api/vendor/phpmailer/phpmailer/examples/contactform.phps +95 -0
  64. package/src/api/vendor/phpmailer/phpmailer/examples/contents.html +17 -0
  65. package/src/api/vendor/phpmailer/phpmailer/examples/contentsutf8.html +23 -0
  66. package/src/api/vendor/phpmailer/phpmailer/examples/exceptions.phps +40 -0
  67. package/src/api/vendor/phpmailer/phpmailer/examples/extending.phps +72 -0
  68. package/src/api/vendor/phpmailer/phpmailer/examples/gmail.phps +106 -0
  69. package/src/api/vendor/phpmailer/phpmailer/examples/gmail_xoauth.phps +121 -0
  70. package/src/api/vendor/phpmailer/phpmailer/examples/images/PHPMailer card logo.afdesign +0 -0
  71. package/src/api/vendor/phpmailer/phpmailer/examples/images/PHPMailer card logo.png +0 -0
  72. package/src/api/vendor/phpmailer/phpmailer/examples/images/PHPMailer card logo.svg +209 -0
  73. package/src/api/vendor/phpmailer/phpmailer/examples/images/phpmailer.png +0 -0
  74. package/src/api/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png +0 -0
  75. package/src/api/vendor/phpmailer/phpmailer/examples/mail.phps +35 -0
  76. package/src/api/vendor/phpmailer/phpmailer/examples/mailing_list.phps +96 -0
  77. package/src/api/vendor/phpmailer/phpmailer/examples/pop_before_smtp.phps +60 -0
  78. package/src/api/vendor/phpmailer/phpmailer/examples/send_file_upload.phps +60 -0
  79. package/src/api/vendor/phpmailer/phpmailer/examples/send_multiple_file_upload.phps +60 -0
  80. package/src/api/vendor/phpmailer/phpmailer/examples/sendmail.phps +37 -0
  81. package/src/api/vendor/phpmailer/phpmailer/examples/sendoauth2.phps +100 -0
  82. package/src/api/vendor/phpmailer/phpmailer/examples/simple_contact_form.phps +102 -0
  83. package/src/api/vendor/phpmailer/phpmailer/examples/smime_signed_mail.phps +99 -0
  84. package/src/api/vendor/phpmailer/phpmailer/examples/smtp.phps +62 -0
  85. package/src/api/vendor/phpmailer/phpmailer/examples/smtp_check.phps +60 -0
  86. package/src/api/vendor/phpmailer/phpmailer/examples/smtp_low_memory.phps +117 -0
  87. package/src/api/vendor/phpmailer/phpmailer/examples/smtp_no_auth.phps +53 -0
  88. package/src/api/vendor/phpmailer/phpmailer/examples/ssl_options.phps +81 -0
  89. package/src/api/vendor/phpmailer/phpmailer/get_oauth_token.php +182 -0
  90. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php +26 -0
  91. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php +27 -0
  92. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-as.php +35 -0
  93. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php +27 -0
  94. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php +27 -0
  95. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php +27 -0
  96. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php +27 -0
  97. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-bn.php +35 -0
  98. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php +27 -0
  99. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php +28 -0
  100. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php +39 -0
  101. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php +28 -0
  102. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php +33 -0
  103. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php +37 -0
  104. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php +38 -0
  105. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php +28 -0
  106. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php +28 -0
  107. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php +27 -0
  108. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php +27 -0
  109. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php +36 -0
  110. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php +27 -0
  111. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php +27 -0
  112. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php +35 -0
  113. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php +27 -0
  114. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php +27 -0
  115. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php +27 -0
  116. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php +31 -0
  117. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php +28 -0
  118. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php +37 -0
  119. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php +27 -0
  120. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php +27 -0
  121. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ku.php +27 -0
  122. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php +27 -0
  123. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php +27 -0
  124. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php +27 -0
  125. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-mn.php +27 -0
  126. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php +27 -0
  127. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php +37 -0
  128. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php +38 -0
  129. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php +33 -0
  130. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php +34 -0
  131. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php +38 -0
  132. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php +33 -0
  133. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php +36 -0
  134. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-si.php +34 -0
  135. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php +30 -0
  136. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php +36 -0
  137. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php +28 -0
  138. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php +28 -0
  139. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php +27 -0
  140. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php +28 -0
  141. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php +38 -0
  142. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php +28 -0
  143. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-ur.php +30 -0
  144. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php +27 -0
  145. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php +29 -0
  146. package/src/api/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php +36 -0
  147. package/src/api/vendor/phpmailer/phpmailer/phpcs.xml.dist +52 -0
  148. package/src/api/vendor/phpmailer/phpmailer/phpdoc.dist.xml +20 -0
  149. package/src/api/vendor/phpmailer/phpmailer/phpunit.xml.dist +36 -0
  150. package/src/api/vendor/phpmailer/phpmailer/src/DSNConfigurator.php +245 -0
  151. package/src/api/vendor/phpmailer/phpmailer/src/Exception.php +40 -0
  152. package/src/api/vendor/phpmailer/phpmailer/src/OAuth.php +139 -0
  153. package/src/api/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php +44 -0
  154. package/src/api/vendor/phpmailer/phpmailer/src/PHPMailer.php +5525 -0
  155. package/src/api/vendor/phpmailer/phpmailer/src/POP3.php +470 -0
  156. package/src/api/vendor/phpmailer/phpmailer/src/SMTP.php +1617 -0
  157. package/src/api/vendor/phpmailer/phpmailer/test/DebugLogTestListener.php +47 -0
  158. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/FileIsAccessibleTest/accessible.txt +1 -0
  159. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/FileIsAccessibleTest/inaccessible.txt +1 -0
  160. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-fr.php +10 -0
  161. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-nl.php +10 -0
  162. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xa_scri_cc.php +9 -0
  163. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xb_scri.php +9 -0
  164. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xc_cc.php +9 -0
  165. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xd_cc.php +9 -0
  166. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xd_scri.php +9 -0
  167. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xe.php +9 -0
  168. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-xx.php +9 -0
  169. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-yy.php +16 -0
  170. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-yz.php +16 -0
  171. package/src/api/vendor/phpmailer/phpmailer/test/Fixtures/LocalizationTest/phpmailer.lang-zz.php +20 -0
  172. package/src/api/vendor/phpmailer/phpmailer/test/Language/TranslationCompletenessTest.php +97 -0
  173. package/src/api/vendor/phpmailer/phpmailer/test/OAuth/OAuthTest.php +76 -0
  174. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/AddEmbeddedImageTest.php +178 -0
  175. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/AddStringAttachmentTest.php +147 -0
  176. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/AddStringEmbeddedImageTest.php +161 -0
  177. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/AddrFormatTest.php +70 -0
  178. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/AuthCRAMMD5Test.php +48 -0
  179. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/CustomHeaderTest.php +285 -0
  180. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/DKIMTest.php +258 -0
  181. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/DKIMWithoutExceptionsTest.php +46 -0
  182. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/DSNConfiguratorTest.php +221 -0
  183. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/EncodeQTest.php +110 -0
  184. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/EncodeStringTest.php +135 -0
  185. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/FileIsAccessibleTest.php +103 -0
  186. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/FilenameToTypeTest.php +74 -0
  187. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/GenerateIdTest.php +75 -0
  188. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/GetLastMessageIDTest.php +110 -0
  189. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/HasLineLongerThanMaxTest.php +158 -0
  190. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/Html2TextTest.php +231 -0
  191. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/ICalTest.php +126 -0
  192. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/IsPermittedPathTest.php +108 -0
  193. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/IsValidHostTest.php +107 -0
  194. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/LocalizationTest.php +505 -0
  195. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/MailTransportTest.php +261 -0
  196. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/MbPathinfoTest.php +171 -0
  197. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/MimeTypesTest.php +70 -0
  198. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/NormalizeBreaksTest.php +111 -0
  199. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/PHPMailerTest.php +1388 -0
  200. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/ParseAddressesTest.php +321 -0
  201. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/PunyencodeAddressTest.php +141 -0
  202. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/QuotedStringTest.php +70 -0
  203. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/ReplyToGetSetClearTest.php +444 -0
  204. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/SetErrorTest.php +154 -0
  205. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/SetFromTest.php +202 -0
  206. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/SetTest.php +81 -0
  207. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/SetWordWrapTest.php +120 -0
  208. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/Utf8CharBoundaryTest.php +66 -0
  209. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/ValidateAddressCustomValidatorTest.php +116 -0
  210. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/ValidateAddressTest.php +485 -0
  211. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/WrapTextTest.php +125 -0
  212. package/src/api/vendor/phpmailer/phpmailer/test/PHPMailer/XMailerTest.php +75 -0
  213. package/src/api/vendor/phpmailer/phpmailer/test/POP3/PopBeforeSmtpTest.php +139 -0
  214. package/src/api/vendor/phpmailer/phpmailer/test/PreSendTestCase.php +46 -0
  215. package/src/api/vendor/phpmailer/phpmailer/test/Security/DenialOfServiceVectorsTest.php +52 -0
  216. package/src/api/vendor/phpmailer/phpmailer/test/SendTestCase.php +126 -0
  217. package/src/api/vendor/phpmailer/phpmailer/test/TestCase.php +392 -0
  218. package/src/api/vendor/phpmailer/phpmailer/test/fakepopserver.sh +126 -0
  219. package/src/api/vendor/phpmailer/phpmailer/test/fakesendmail.sh +22 -0
  220. package/src/api/vendor/phpmailer/phpmailer/test/runfakepopserver.sh +12 -0
  221. package/src/api/vendor/phpmailer/phpmailer/test/testbootstrap-dist.php +8 -0
  222. package/src/api/vendor/phpmailer/phpmailer/test/validators.php +12 -0
  223. package/src/api/vendor/phpoption/phpoption/.gitattributes +13 -0
  224. package/src/api/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
  225. package/src/api/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
  226. package/src/api/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
  227. package/src/api/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
  228. package/src/api/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
  229. package/src/api/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
  230. package/src/api/vendor/phpoption/phpoption/LICENSE +201 -0
  231. package/src/api/vendor/phpoption/phpoption/Makefile +17 -0
  232. package/src/api/vendor/phpoption/phpoption/README.md +201 -0
  233. package/src/api/vendor/phpoption/phpoption/composer.json +50 -0
  234. package/src/api/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
  235. package/src/api/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
  236. package/src/api/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
  237. package/src/api/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -0
  238. package/src/api/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -0
  239. package/src/api/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -0
  240. package/src/api/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -0
  241. package/src/api/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
  242. package/src/api/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
  243. package/src/api/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
  244. package/src/api/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
  245. package/src/api/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
  246. package/src/api/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
  247. package/src/api/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
  248. package/src/api/vendor/symfony/polyfill-ctype/Ctype.php +232 -0
  249. package/src/api/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  250. package/src/api/vendor/symfony/polyfill-ctype/README.md +12 -0
  251. package/src/api/vendor/symfony/polyfill-ctype/bootstrap.php +50 -0
  252. package/src/api/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -0
  253. package/src/api/vendor/symfony/polyfill-ctype/composer.json +38 -0
  254. package/src/api/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  255. package/src/api/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -0
  256. package/src/api/vendor/symfony/polyfill-mbstring/README.md +13 -0
  257. package/src/api/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -0
  258. package/src/api/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  259. package/src/api/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  260. package/src/api/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -0
  261. package/src/api/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -0
  262. package/src/api/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -0
  263. package/src/api/vendor/symfony/polyfill-mbstring/composer.json +39 -0
  264. package/src/api/vendor/symfony/polyfill-php80/LICENSE +19 -0
  265. package/src/api/vendor/symfony/polyfill-php80/Php80.php +115 -0
  266. package/src/api/vendor/symfony/polyfill-php80/PhpToken.php +106 -0
  267. package/src/api/vendor/symfony/polyfill-php80/README.md +25 -0
  268. package/src/api/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -0
  269. package/src/api/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -0
  270. package/src/api/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -0
  271. package/src/api/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -0
  272. package/src/api/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -0
  273. package/src/api/vendor/symfony/polyfill-php80/bootstrap.php +42 -0
  274. package/src/api/vendor/symfony/polyfill-php80/composer.json +37 -0
  275. package/src/api/vendor/vlucas/phpdotenv/.editorconfig +15 -0
  276. package/src/api/vendor/vlucas/phpdotenv/.gitattributes +15 -0
  277. package/src/api/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
  278. package/src/api/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
  279. package/src/api/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
  280. package/src/api/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
  281. package/src/api/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
  282. package/src/api/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
  283. package/src/api/vendor/vlucas/phpdotenv/LICENSE +30 -0
  284. package/src/api/vendor/vlucas/phpdotenv/Makefile +17 -0
  285. package/src/api/vendor/vlucas/phpdotenv/README.md +370 -0
  286. package/src/api/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
  287. package/src/api/vendor/vlucas/phpdotenv/composer.json +60 -0
  288. package/src/api/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
  289. package/src/api/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
  290. package/src/api/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
  291. package/src/api/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -0
  292. package/src/api/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -0
  293. package/src/api/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -0
  294. package/src/api/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -0
  295. package/src/api/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -0
  296. package/src/api/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -0
  297. package/src/api/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -0
  298. package/src/api/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -0
  299. package/src/api/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -0
  300. package/src/api/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -0
  301. package/src/api/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -0
  302. package/src/api/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -0
  303. package/src/api/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -0
  304. package/src/api/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -0
  305. package/src/api/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -0
  306. package/src/api/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -0
  307. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -0
  308. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -0
  309. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -0
  310. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -0
  311. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -0
  312. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -0
  313. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -0
  314. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -0
  315. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -0
  316. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -0
  317. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -0
  318. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -0
  319. package/src/api/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -0
  320. package/src/api/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -0
  321. package/src/api/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -0
  322. package/src/api/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -0
  323. package/src/api/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -0
  324. package/src/api/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -0
  325. package/src/api/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -0
  326. package/src/api/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -0
  327. package/src/api/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -0
  328. package/src/api/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -0
  329. package/src/api/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -0
  330. package/src/api/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -0
  331. package/src/api/vendor/vlucas/phpdotenv/src/Validator.php +207 -0
  332. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
  333. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
  334. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
  335. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
  336. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
  337. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
  338. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
  339. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
  340. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
  341. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
  342. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
  343. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
  344. package/src/api/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
  345. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
  346. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
  347. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
  348. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
  349. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
  350. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
  351. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
  352. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
  353. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
  354. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
  355. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
  356. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
  357. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
  358. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
  359. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
  360. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
  361. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
  362. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
  363. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
  364. package/src/api/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
  365. package/src/api/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
@@ -0,0 +1,1122 @@
1
+ # PHPMailer Change Log
2
+
3
+ ## Version 7.0.2 (January 9th, 2026)
4
+ * Fixes for sendmail parameter problems in WordPress, thanks to @SirLouen
5
+ * Reduce memory consumption when sending large attachments by @RobinvanderVliet
6
+
7
+ ## Version 7.0.1 (November 25th, 2025)
8
+ * Use From domain when generating CIDs in msgHTML.
9
+ * Update to PHPCompatibility 10, resolve numerous PHPCS issues in PHP 8.5.
10
+ * Revise GitHub actions for PHP 8.5 and experimental 8.6 tests.
11
+ * Switch gmail example from the deprecated IMAP extension to use `directorytree/imapengine` for IMAP uploads.
12
+ * Set `htmlspecialchars()` flags explicitly and consistently.
13
+ * Convert XOAUTH2 token exceptions into PHPMailer Exceptions. The original exception is available as an inner exception.
14
+ * Deprecate VERSION constants in POP3 and SMTP classes.
15
+ * Remove dependency on `roave/security-advisories`; it's now built into composer 2.9.
16
+ * Update Dutch, Esperanto, and Norwegian translations.
17
+
18
+ ## Version 7.0.0 (October 15th, 2025)
19
+ This is exactly the same as 6.11.1 but bumps the major version number to indicate the presence of a BC break in child classes. Specifically, `lang()`, `setLanguage()`, and `$language` are now static, and should be called statically.
20
+
21
+ ## Version 6.12.0 (October 15th, 2025)
22
+ This is exactly the same as 6.10.0, reverting all the changes in 6.11.0 and 6.11.1, which inadvertently introduced a BC break affecting child classes. 6.11.1 has been re-released as 7.0.0.
23
+
24
+ ## Version 6.11.1 (September 30th, 2025)
25
+ * Avoid function signature problems with the deprecation of `$useimap` in `parseAddresses`.
26
+
27
+ ## Version 6.11.0 (September 29th, 2025)
28
+ * Add support for [RFC4954](https://www.rfc-editor.org/rfc/rfc4954#section-4) two-part authentication for large XOAUTH2 tokens.
29
+ * Also support empty tokens.
30
+ * Avoid bogus static analyser deprecation warnings in `setFrom`.
31
+ * Make language loading entirely static, thanks to @SirLouen.
32
+ * Emit warnings when `parseAddresses()` is used without the IMAP extension.
33
+ * Handle `mb_decode_mimeheader` changes from PHP 8.3+.
34
+ * Deprecate the charset param to parseAddresses.
35
+ * Fix PHP 8.5 linting issue.
36
+ * Don't use `-t` switch when calling qmail.
37
+ * Checking for interrupted system calls now works in languages other than English.
38
+ * Add support for extracting gmail transaction IDs after sending.
39
+ * For consistency, the protected `ReplyTo` property has been changed to match the format used for other address arrays.
40
+ * Fix line length issues when using S/MIME signing.
41
+ * Pin action runners to exact versions to avoid unexpected upstream changes.
42
+
43
+ ## Version 6.10.0 (April 24th, 2025)
44
+ * Add support for [RFC 6530 SMTPUTF8](https://www.rfc-editor.org/rfc/rfc6530), permitting use of UTF-8 Unicode characters everywhere, thanks to @arnt and ICANN. See `SMTPUTF8.md` for details.
45
+ * More reliable checking for multibyte support.
46
+
47
+ ## Version 6.9.3 (November 22nd, 2024)
48
+ * Add support for the release version of PHP 8.4
49
+ * Add experimental support for PHP 8.5
50
+ * Use rfc-editor.org for all RFC docs links
51
+
52
+ ## Version 6.9.2 (October 9th, 2024)
53
+ * Escape dots in SMTP transaction ID patterns
54
+ * Add link to [aboutmy.email](https://aboutmy.email) testing service in docs
55
+ * Add a more comprehensive example for using XOAUTH2 with gmail and Azure, thanks to @decomplexity
56
+ * Update Turkish, Spanish, Japanese, Russian, French translations
57
+ * Add Urdu & Kurdish (Sorani) translations
58
+ * Fix broken links in docs and comments, avoid http links, correct link to LGPL 2.1 license file
59
+ * Cleaner PSR-3 SMTP debug logging
60
+ * Bump GitHub action versions
61
+ * Fix error handler scope issue in POP3 and SMTP classes
62
+ * Numerous test improvements by @jrfnl
63
+
64
+ ## Version 6.9.1 (November 25th, 2023)
65
+ * Finalise SendOauth2 example
66
+
67
+ ## Version 6.9.0 (November 23rd, 2023)
68
+ * Add support for official release of PHP 8.3, add experimental support for PHP 8.4
69
+ * Add `clearCustomHeader` and `replaceCustomHeader` methods
70
+ * Add support for the XCLIENT SMTP extension with `setSMTPXclientAttribute` and `getSMTPXclientAttributes` methods
71
+ * Don't attempt opportunistic TLS when connecting to localhost
72
+ * Add package link and example showing how to use @decomplexity's SendOauth2 wrapper
73
+ * Update example to show a better way of using an SMTP subclass
74
+ * Avoid some more deprecation warnings
75
+ * Update Danish and Polish translations
76
+ * Add Bengali and Assamese translations
77
+
78
+ ## Version 6.8.1 (August 29th, 2023)
79
+ * Don't reflect malformed DSNs in error messages to avert any risk of XSS
80
+ * Improve Simplified Chinese, Sinhalese, and Norwegian translations
81
+ * Don't use `setAccessible` in PHP >= 8.1 in tests
82
+ * Avoid a deprecation notice in PHP 8.3
83
+ * Fix link in readme
84
+
85
+ ## Version 6.8.0 (March 6th, 2023)
86
+ * Add DSN parsing class, thanks to @voronkovich
87
+ * Fix some name edge cases, expand tests
88
+ * Add pattern for ZonMTA message IDs
89
+ * Improve Hindi translation
90
+
91
+ ## Version 6.7.1 (December 8th, 2022)
92
+ * Add official support for PHP 8.2
93
+ * Add PHP 8.3 to test suite with "experimental" status
94
+ * Add ext-openssl to composer suggest list
95
+ * Bump development dependencies
96
+
97
+ ## Version 6.7 (December 5th, 2022)
98
+ * Break out boundary definitions into a method (note that boundary format has also changed slightly)
99
+ * Remove MIME preamble to match popular client behaviour, may help with DKIM too
100
+ * Fix handling of trailing whitespace in simple DKIM canonicalisation
101
+ * Fix some possible POP3 auth issues, including a TCP hang (thanks to @czirkoszoltan)
102
+ * Add Azure XOAUTH2 example and docs (thanks to @greew)
103
+ * Preserve errors during disconnect
104
+ * Avoid some PHP 8.1 type issues
105
+ * Update CI to run on Ubuntu 22.04
106
+
107
+ ## Version 6.6.5 (October 7th, 2022)
108
+
109
+ * Don't try to issue RSET if there has been a connection error
110
+ * Reject attempts to add folders as attachments
111
+ * Don't suppress earlier error messages on close()
112
+ * Handle Host === null better
113
+ * Update Danish and Polish translations
114
+ * Change recommendation for Microsoft OAuth package to thenetworg/oauth2-azure
115
+ * Bump some GitHub action versions
116
+
117
+ ## Version 6.6.4 (August 22nd, 2022)
118
+ * Update Greek translation
119
+ * Add text/csv MIME type
120
+ * Fix DKIM when sending to anonymous group via mail()
121
+ * Improve docs around auth following gmail & MS deprecations
122
+ * Update GitHub action deps
123
+ * Add OpenSSF Scorecard security health metrics
124
+
125
+ ## Version 6.6.3 (June 20th, 2022)
126
+ * Add an HTML form to the OAuth setup script
127
+ * Minor CS improvements
128
+ * Add Mongolian translation
129
+ * Remove bogus "ch" translation
130
+
131
+ ## Version 6.6.2 (June 14th, 2022)
132
+ * Fix docs deployment GitHub action
133
+ * Updates to parallel-lint and console highlighter, thanks to @jrfnl
134
+
135
+ ## Version 6.6.1 (June 14th, 2022) (unreleased)
136
+ * Don't clear errors on RSET, so they can still be obtained when using keepalive
137
+ * Bump some GitHub action versions
138
+ * Fix some tests
139
+ * 🇺🇦 Slava Ukraini!
140
+
141
+ ## Version 6.6 (February 28th, 2022)
142
+ * Introduce interface for OAuth providers, making it easier to use OAuth libraries other than the League one, thanks to @pdscopes.
143
+ * Add more contextual information to TLS connection failure error messages, and throw exceptions on TLS connection errors, thanks to @miken32
144
+
145
+ ## Version 6.5.4 (February 17th, 2022)
146
+ * If we can't use escaping functions, refuse to do unsafe things
147
+ * Avoid PHP 8.1 trim issue
148
+ * Add tests for XMailer
149
+ * Fix bug in use of CharSet property
150
+ * Fix bug in file upload example
151
+ * Update dev dependencies
152
+
153
+ ## Version 6.5.3 (November 25th, 2021)
154
+ * Wrong commit tagged for the 6.5.2 release!
155
+ * Version file updated
156
+
157
+ ## Version 6.5.2 (November 25th, 2021)
158
+ * Enable official support for PHP 8.1
159
+ * Enable experimental support for PHP 8.2
160
+ * Fix for PHP 5.6
161
+ * Fix for incorrect options for punyencoding IDNs
162
+
163
+ ## Version 6.5.1 (August 18th, 2021)
164
+ * Provisional support for PHP 8.1
165
+ * Major overhaul of test suite
166
+ * Add codecov.io coverage reporting
167
+ * Prefer implicit TLS on port 465 as default encryption scheme in examples, as per RFC8314
168
+ * Fix potential noisy output from IMAP address parser
169
+ * Stricter checking of custom MessageID validity
170
+ * Replace invalid default From address
171
+ * Support fallback for languages, so a request for `pt_xx` will fall back to `pt` rather than the default `en`.
172
+ * Support multi-line RFC2047 addresses in parseAddresses
173
+ * Improved Japanese translation
174
+
175
+ Many thanks to @jrfnl for all her work.
176
+
177
+ ## Version 6.5.0 (June 16th, 2021)
178
+ * **SECURITY** Fixes CVE-2021-34551, a complex RCE affecting Windows hosts. See [SECURITY.md](SECURITY.md) for details.
179
+ * The fix for this issue changes the way that language files are loaded. While they remain in the same PHP-like format, they are processed as plain text, and any code in them will not be run, including operations such as concatenation using the `.` operator.
180
+ * *Deprecation* The current translation file format using PHP arrays is now deprecated; the next major version will introduce a new format.
181
+ * **SECURITY** Fixes CVE-2021-3603 that may permit untrusted code to be run from an address validator. See [SECURITY.md](SECURITY.md) for details.
182
+ * The fix for this issue includes a minor BC break: callables injected into `validateAddress`, or indirectly through the `$validator` class property, may no longer be simple strings. If you want to inject your own validator, provide a closure instead of a function name.
183
+ * Haraka message ID strings are now recognised
184
+
185
+ ## Version 6.4.1 (April 29th, 2021)
186
+ * **SECURITY** Fixes CVE-2020-36326, a regression of CVE-2018-19296 object injection introduced in 6.1.8, see SECURITY.md for details
187
+ * Reject more file paths that look like URLs, matching RFC3986 spec, blocking URLS using schemes such as `ssh2`
188
+ * Ensure method signature consistency in `doCallback` calls
189
+ * Ukrainian language update
190
+ * Add composer scripts for checking coding standards and running tests
191
+
192
+ ## Version 6.4.0 (March 31st, 2021)
193
+ * Revert change that made the `mail()` and sendmail transports set the envelope sender if one isn't explicitly provided, as it causes problems described in <https://github.com/PHPMailer/PHPMailer/issues/2298>
194
+ * Check for mbstring extension before decoding addresss in `parseAddress`
195
+ * Add Serbian Latin translation (`sr_latn`)
196
+ * Enrol PHPMailer in Tidelift
197
+
198
+ ## Version 6.3.0 (February 19th, 2021)
199
+ * Handle early connection errors such as 421 during connection and EHLO states
200
+ * Switch to GitHub Actions for CI
201
+ * Generate debug output for `mail()`, sendmail, and qmail transports. Enable using the same mechanism as for SMTP: set `SMTPDebug` > 0
202
+ * Make the `mail()` and sendmail transports set the envelope sender the same way as SMTP does, i.e. use whatever `From` is set to, only falling back to the `sendmail_from` php.ini setting if `From` is unset. This avoids errors from the `mail()` function if `Sender` is not set explicitly and php.ini is not configured. This is a minor functionality change, so bumps the minor version number.
203
+ * Extend `parseAddresses` to decode encoded names, improve tests
204
+
205
+ ## Version 6.2.0
206
+ * PHP 8.0 compatibility, many thanks to @jrf_nl!
207
+ * Switch from PHP CS Fixer to PHP CodeSniffer for coding standards
208
+ * Create class constants for the debug levels in the POP3 class
209
+ * Improve French, Slovenian, and Ukrainian translations
210
+ * Improve file upload examples so file extensions are retained
211
+ * Resolve PHP 8 line break issues due to a very old PHP bug being fixed
212
+ * Avoid warnings when using old openssl functions
213
+ * Improve Travis-CI build configuration
214
+
215
+ ## Version 6.1.8 (October 9th, 2020)
216
+ * Mark `ext-hash` as required in composer.json. This has long been required, but now it will cause an error at install time rather than runtime, making it easier to diagnose
217
+ * Make file upload examples safer
218
+ * Update links to SMTP testing servers
219
+ * Avoid errors when set_time_limit is disabled (you need better hosting!)
220
+ * Allow overriding auth settings for local tests; makes it easy to run tests using HELO
221
+ * Recover gracefully from errors during keepalive sessions
222
+ * Add AVIF MIME type mapping
223
+ * Prevent duplicate `To` headers in BCC-only messages when using `mail()`
224
+ * Avoid file function problems when attaching files from Windows UNC paths
225
+ * Improve German, Bahasa Indonesian, Filipino translations
226
+ * Add Javascript-based example
227
+ * Increased test coverage
228
+
229
+ ## Version 6.1.7 (July 14th, 2020)
230
+ * Split SMTP connection into two separate methods
231
+ * Undo BC break in PHP versions 5.2.3 - 7.0.0 introduced in 6.1.2 when injecting callables for address validation and HTML to text conversion
232
+ * Save response to SMTP welcome banner as other responses are saved
233
+ * Retry stream_select if interrupted by a signal
234
+
235
+ ## Version 6.1.6 (May 27th, 2020)
236
+ * **SECURITY** Fix insufficient output escaping bug in file attachment names. CVE-2020-13625. Reported by Elar Lang of Clarified Security.
237
+ * Correct Armenian ISO language code from `am` to `hy`, add mapping for fallback
238
+ * Use correct timeout property in debug output
239
+
240
+ ## Version 6.1.5 (March 14th, 2020)
241
+ * Reject invalid custom headers that are empty or contain breaks
242
+ * Various fixes for DKIM issues, especially when using `mail()` transport
243
+ * Drop the `l=` length tag from DKIM signatures; it's a mild security risk
244
+ * Ensure CRLF is used explicitly when needed, rather than `static::$LE`
245
+ * Add a method for trimming header content consistently
246
+ * Some minor tweaks to resolve static analyser complaints
247
+ * Check that attachment files are readable both when adding *and* when sending
248
+ * Work around Outlook bug in mishandling MIME preamble
249
+ * Danish translation improvements
250
+
251
+ ## Version 6.1.4 (December 10th, 2019)
252
+ * Clean up hostname handling
253
+ * Avoid IDN error on older PHP versions, prep for PHP 8.0
254
+ * Don't force RFC2047 folding unnecessarily
255
+ * Enable tests on full release of PHP 7.4
256
+
257
+ ## Version 6.1.3 (November 21st, 2019)
258
+ * Fix an issue preventing injected debug handlers from working
259
+ * Fix an issue relating to connection timeout
260
+ * Add `SMTP::MAX_REPLY_LENGTH` constant
261
+ * Remove some dev dependencies; phpdoc no longer included
262
+ * Fix an issue where non-compliant servers returning bare codes caused an SMTP hang
263
+
264
+ ## Version 6.1.2 (November 13th, 2019)
265
+ * Substantial revision of DKIM header generation
266
+ * Use shorter hashes for auto-generated CID values
267
+ * Fix format of content-id headers, and only use them for inline attachments
268
+ * Remove all use of XHTML
269
+ * Lots of coding standards cleanup
270
+ * API docs are now auto-updated via GitHub actions
271
+ * Fix header separation bug created in 6.1.1
272
+ * Fix misidentification of background attributes in SVG images in msgHTML
273
+
274
+ ## Version 6.1.1 (September 27th 2019)
275
+ * Fix misordered version tag
276
+
277
+ ## Version 6.1.0 (September 27th 2019)
278
+ * Multiple bug fixes for folding of long header lines, thanks to @caugner
279
+ * Add support for [RFC2387 child element content-type hint](https://www.rfc-editor.org/rfc/rfc2387#section-3.1) in `multipart/related` structures.
280
+ * Support for Ical event methods other than `REQUEST`, thanks to @puhr-mde
281
+ * Change header folding and param separation to use spaces instead of tabs
282
+ * Use ; to separate multiple MIME header params
283
+ * Add support for RFC3461 DSN messages
284
+ * IMAP example code fixed
285
+ * Use PHP temp streams instead of temp files
286
+ * Allow for longer SMTP error codes
287
+ * Updated Brazilian Portuguese translation
288
+ * Throw exceptions on invalid encoding values
289
+ * Add Afrikaans translation, thanks to @Donno191
290
+ * Updated Farsi/Persian translation
291
+ * Add PHP 7.4 to test config
292
+ * Remove some ambiguity about setting XMailer property
293
+ * Improve error checking in mailing list example
294
+ * Drop PHP 5.5 from CI config as it's no longer supported by Travis-CI
295
+ * Fix S/MIME signing
296
+ * Add constants for encryption type
297
+ * More consistent use of constants for encryption, charset, encoding
298
+ * Add PHPMailer logo images
299
+
300
+ ## Version 6.0.7 (February 1st 2019)
301
+ * Include RedHat GPL Cooperation Commitment - see the `COMMITMENT` file for details.
302
+ * Don't exclude composer.json from git exports as it breaks composer updates in projects that use PHPMailer
303
+ * Updated Malay translation
304
+ * Fix language tests
305
+
306
+ ## Version 6.0.6 (November 14th 2018)
307
+ * **SECURITY** Fix potential object injection vulnerability. Reported by Sehun Oh of cyberone.kr.
308
+ * Added Tagalog translation, thanks to @StoneArtz
309
+ * Added Malagache translation, thanks to @Hackinet
310
+ * Updated Serbian translation, fixed incorrect language code, thanks to @mmilanovic4
311
+ * Updated Arabic translations (@MicroDroid)
312
+ * Updated Hungarian translations
313
+ * Updated Dutch translations
314
+ * Updated Slovenian translation (@filips123)
315
+ * Updated Slovak translation (@pcmanik)
316
+ * Updated Italian translation (@sabas)
317
+ * Updated Norwegian translation (@aleskr)
318
+ * Updated Indonesian translation (@mylastof)
319
+ * Add constants for common values, such as `text/html` and `quoted-printable`, and use them
320
+ * Added support for copied headers in DKIM, helping with debugging, and an option to add extra headers to the DKIM signature. See DKIM_sign example for how to use them. Thanks to @gwi-mmuths.
321
+ * Add Campaign Monitor transaction ID pattern matcher
322
+ * Remove deprecated constant and ini values causing warnings in PHP 7.3, added PHP 7.3 build to Travis config.
323
+ * Expanded test coverage
324
+
325
+ ## Version 5.2.27 (November 14th 2018)
326
+ * **SECURITY** Fix potential object injection vulnerability. Reported by Sehun Oh of cyberone.kr.
327
+ * Note that the 5.2 branch is now deprecated and will not receive security updates after 31st December 2018.
328
+
329
+ ## Version 6.0.5 (March 27th 2018)
330
+ * Re-roll of 6.0.4 to fix missed version file entry. No code changes.
331
+
332
+ ## Version 6.0.4 (March 27th 2018)
333
+ * Add some modern MIME types
334
+ * Add Hindi translation (thanks to @dextel2)
335
+ * Improve composer docs
336
+ * Fix generation of path to language files
337
+
338
+ ## Version 6.0.3 (January 5th 2018)
339
+ * Correct DKIM canonicalization of line breaks for header & body - thanks to @themichaelhall
340
+ * Make dependence on ext-filter explicit in composer.json
341
+
342
+ ## Version 6.0.2 (November 29th 2017)
343
+ * Don't make max line length depend on line break format
344
+ * Improve Travis-CI config - thanks to Filippo Tessarotto
345
+ * Match SendGrid transaction IDs
346
+ * `idnSupported()` now static, as previously documented
347
+ * Improve error messages for invalid addresses
348
+ * Improve Indonesian translation (thanks to @januridp)
349
+ * Improve Esperanto translation (thanks to @dknacht)
350
+ * Clean up git export ignore settings for production and zip bundles
351
+ * Update license doc
352
+ * Updated upgrading docs
353
+ * Clarify `addStringEmbeddedImage` docs
354
+ * Hide auth credentials in all but lowest-level debug output, prevents leakage in bug reports
355
+ * Code style cleanup
356
+
357
+ ## Version 6.0.1 (September 14th 2017)
358
+ * Use shorter Message-ID headers (with more entropy) to avoid iCloud blackhole bug
359
+ * Switch to Symfony code style (though it's not well defined)
360
+ * CI builds now apply syntax & code style checks, so make your PRs tidy!
361
+ * CI code coverage only applied on latest version of PHP to speed up builds (thanks to @Slamdunk for these CI changes)
362
+ * Remove `composer.lock` - it's important that libraries break early; keeping it is for apps
363
+ * Rename test scripts to PSR-4 spec
364
+ * Make content-id values settable on attachments, not just embedded items
365
+ * Add SMTP transaction IDs to callbacks & allow for future expansion
366
+ * Expand test coverage
367
+
368
+ ## Version 6.0 (August 28th 2017)
369
+ This is a major update that breaks backwards compatibility.
370
+
371
+ * **Requires PHP 5.5 or later**
372
+ * **Uses the `PHPMailer\PHPMailer` namespace**
373
+ * File structure simplified and PSR-4 compatible, classes live in the `src/` folder
374
+ * The custom autoloader has been removed: [**use composer**](https://getcomposer.org)!
375
+ * Classes & Exceptions renamed to make use of the namespace
376
+ * Most statically called functions now use the `static` keyword instead of `self`, so it's possible to override static internal functions in subclasses, for example `validateAddress()`
377
+ * Complete RFC standardisation on CRLF (`\r\n`) line breaks for SMTP by default:
378
+ * `PHPMailer:$LE` defaults to CRLF
379
+ * All uses of `PHPMailer::$LE` property converted to use `static::$LE` constant for consistency and ease of overriding
380
+ * Similar changes to line break handling in SMTP and POP3 classes.
381
+ * Line break format for `mail()` transport is set automatically.
382
+ * Warnings emitted for buggy `mail()` in PHP versions 7.0.0 - 7.0.16 and 7.1.0 - 7.1.2; either upgrade or switch to SMTP.
383
+ * Extensive reworking of XOAUTH2, adding support for Google, Yahoo and Microsoft providers, thanks to @sherryl4george
384
+ * Major cleanup of docs and examples
385
+ * All elements previously marked as deprecated have been removed:
386
+ * `PHPMailer->Version` (replaced with `VERSION` constant)
387
+ * `PHPMailer->ReturnPath`
388
+ * `PHPMailer->PluginDir`
389
+ * `PHPMailer->encodeQPphp()`
390
+ * `SMTP->CRLF` (replaced with `LE` constant)
391
+ * `SMTP->Version` (replaced with `VERSION` constant)
392
+ * `SMTP->SMTP_PORT` (replaced with `DEFAULT_PORT` constant)
393
+ * `POP3->CRLF` (replaced with `LE` constant)
394
+ * `POP3->Version` (replaced with `VERSION` constant)
395
+ * `POP3->POP3_PORT` (replaced with `DEFAULT_PORT` constant)
396
+ * `POP3->POP3_TIMEOUT` (replaced with `DEFAULT_TIMEOUT` constant)
397
+ * NTLM authentication has been removed - it never worked anyway!
398
+ * `PHPMailer->Workstation`
399
+ * `PHPMailer->Realm`
400
+ * `SingleTo` functionality is deprecated; this belongs at a higher level - PHPMailer is not a mailing list system.
401
+ * `SMTP::authenticate` method signature changed
402
+ * `parseAddresses()` is now static
403
+ * `validateAddress()` is now called statically from `parseAddresses()`
404
+ * `idnSupported()` is now static and is called statically from `punyencodeAddress()`
405
+ * `PHPMailer->SingleToArray` is now protected
406
+ * `fixEOL()` method removed - it duplicates `PHPMailer::normalizeBreaks()`, so use that instead
407
+ * Don't try to use an auth mechanism if it's not supported by the server
408
+ * Reorder automatic AUTH mechanism selector to try most secure method first
409
+ * `Extras` classes have been removed - use alternative packages from [packagist.org](https://packagist.org) instead
410
+ * Better handling of automatic transfer encoding switch in the presence of long lines
411
+ * Simplification of address validation - now uses PHP's `FILTER_VALIDATE_EMAIL` pattern by default, retains advanced options
412
+ * `Debugoutput` can accept a PSR-3 logger instance
413
+ * To reduce code footprint, the examples folder is no longer included in composer deployments or GitHub zip files
414
+ * Trap low-level errors in SMTP, reports via debug output
415
+ * More reliable folding of message headers
416
+ * Inject your own SMTP implementation via `setSMTPInstance()` instead of having to subclass and override `getSMTPInstance()`.
417
+ * Make obtaining SMTP transaction ID more reliable
418
+ * Better handling of unreliable PHP timeouts
419
+ * Made `SMTPDebug = 4` slightly less noisy
420
+
421
+ ## Version 5.2.25 (August 28th 2017)
422
+ * Make obtaining SMTP transaction ID more reliable
423
+ * Add Bosnian translation
424
+ * This is the last official release in the legacy PHPMailer 5.2 series; there may be future security patches (which will be found in the [5.2-stable branch](https://github.com/PHPMailer/PHPMailer/tree/5.2-stable)), but no further non-security PRs or issues will be accepted. Migrate to PHPMailer 6.0.
425
+
426
+ ## Version 5.2.24 (July 26th 2017)
427
+ * **SECURITY** Fix XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it is not normally executable unless it is explicitly renamed, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project.
428
+ * Handle bare codes (an RFC contravention) in SMTP server responses
429
+ * Make message timestamps more dynamic - calculate the date separately for each message
430
+ * More thorough checks for reading attachments.
431
+ * Throw an exception when trying to send a message with an empty body caused by an internal error.
432
+ * Replaced all use of MD5 and SHA1 hash functions with SHA256.
433
+ * Now checks for invalid host strings when sending via SMTP.
434
+ * Include timestamps in HTML-format debug output
435
+ * Improve Turkish, Norwegian, Serbian, Brazilian Portuguese & simplified Chinese translations
436
+ * Correction of Serbian ISO language code from `sr` to `rs`
437
+ * Fix matching of multiple entries in `Host` to match IPv6 literals without breaking port selection (see #1094, caused by a3b4f6b)
438
+ * Better capture and reporting of SMTP connection errors
439
+
440
+ ## Version 5.2.23 (March 15th 2017)
441
+ * Improve trapping of TLS errors during connection so that they don't cause warnings, and are reported better in debug output
442
+ * Amend test suite so it uses PHPUnit version 4.8, compatible with older versions of PHP, instead of the version supplied by Travis-CI
443
+ * This forces pinning of some dev packages to older releases, but should make travis builds more reliable
444
+ * Test suite now runs on HHVM, and thus so should PHPMailer in general
445
+ * Improve Czech translations
446
+ * Add links to CVE-2017-5223 resources
447
+
448
+ ## Version 5.2.22 (January 5th 2017)
449
+ * **SECURITY** Fix [CVE-2017-5223](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-5223), local file disclosure vulnerability if content passed to `msgHTML()` is sourced from unfiltered user input. Reported by Yongxiang Li of Asiasecurity. The fix for this means that calls to `msgHTML()` without a `$basedir` will not import images with relative URLs, and relative URLs containing `..` will be ignored.
450
+ * Add simple contact form example
451
+ * Emoji in test content
452
+
453
+ ## Version 5.2.21 (December 28th 2016)
454
+ * Fix missed number update in version file - no functional changes
455
+
456
+ ## Version 5.2.20 (December 28th 2016)
457
+ * **SECURITY** Critical security update for CVE-2016-10045 please update now! Thanks to [Dawid Golunski](https://legalhackers.com) and Paul Buonopane (@Zenexer).
458
+ * Note that this change will break VERP addresses in Sender if you're using mail() - workaround: use SMTP to localhost instead.
459
+
460
+ ## Version 5.2.19 (December 26th 2016)
461
+ * Minor cleanup
462
+
463
+ ## Version 5.2.18 (December 24th 2016)
464
+ * **SECURITY** Critical security update for CVE-2016-10033 please update now! Thanks to [Dawid Golunski](https://legalhackers.com).
465
+ * Add ability to extract the SMTP transaction ID from some common SMTP success messages
466
+ * Minor documentation tweaks
467
+
468
+ ## Version 5.2.17 (December 9th 2016)
469
+ * This is officially the last feature release of 5.2. Security fixes only from now on; use PHPMailer 6.0!
470
+ * Allow DKIM private key to be provided as a string
471
+ * Provide mechanism to allow overriding of boundary and message ID creation
472
+ * Improve Brazilian Portuguese, Spanish, Swedish, Romanian, and German translations
473
+ * PHP 7.1 support for Travis-CI
474
+ * Fix some language codes
475
+ * Add security notices
476
+ * Improve DKIM compatibility in older PHP versions
477
+ * Improve trapping and capture of SMTP connection errors
478
+ * Improve passthrough of error levels for debug output
479
+ * PHPDoc cleanup
480
+
481
+ ## Version 5.2.16 (June 6th 2016)
482
+ * Added DKIM example
483
+ * Fixed empty additional_parameters problem
484
+ * Fixed wrong version number in VERSION file!
485
+ * Improve line-length tests
486
+ * Use instance settings for SMTP::connect by default
487
+ * Use more secure auth mechanisms first
488
+
489
+ ## Version 5.2.15 (May 10th 2016)
490
+ * Added ability to inject custom address validators, and set the default validator
491
+ * Fix TLS 1.2 compatibility
492
+ * Remove some excess line breaks in MIME structure
493
+ * Updated Polish, Russian, Brazilian Portuguese, Georgian translations
494
+ * More DRY!
495
+ * Improve error messages
496
+ * Update dependencies
497
+ * Add example showing how to handle multiple form file uploads
498
+ * Improve SMTP example
499
+ * Improve Windows compatibility
500
+ * Use consistent names for temp files
501
+ * Fix gmail XOAUTH2 scope, thanks to @sherryl4george
502
+ * Fix extra line break in getSentMIMEMessage()
503
+ * Improve DKIM signing to use SHA-2
504
+
505
+ ## Version 5.2.14 (Nov 1st 2015)
506
+ * Allow addresses with IDN (Internationalized Domain Name) in PHP 5.3+, thanks to @fbonzon
507
+ * Allow access to POP3 errors
508
+ * Make all POP3 private properties and methods protected
509
+ * **SECURITY** Fix vulnerability that allowed email addresses with line breaks (valid in RFC5322) to pass to SMTP, permitting message injection at the SMTP level. Mitigated in both the address validator and in the lower-level SMTP class. Thanks to Takeshi Terada.
510
+ * Updated Brazilian Portuguese translations (Thanks to @phelipealves)
511
+
512
+ ## Version 5.2.13 (Sep 14th 2015)
513
+ * Rename internal oauth class to avoid name clashes
514
+ * Improve Estonian translations
515
+
516
+ ## Version 5.2.12 (Sep 1st 2015)
517
+ * Fix incorrect composer package dependencies
518
+ * Skip existing embedded image `cid`s in `msgHTML`
519
+
520
+ ## Version 5.2.11 (Aug 31st 2015)
521
+ * Don't switch to quoted-printable for long lines if already using base64
522
+ * Fixed Travis-CI config when run on PHP 7
523
+ * Added Google XOAUTH2 authentication mechanism, thanks to @sherryl4george
524
+ * Add address parser for RFC822-format addresses
525
+ * Update MS Office MIME types
526
+ * Don't convert line breaks when using quoted-printable encoding
527
+ * Handle MS Exchange returning an invalid empty AUTH-type list in EHLO
528
+ * Don't set name or filename properties on MIME parts that don't have one
529
+
530
+ ## Version 5.2.10 (May 4th 2015)
531
+ * Add custom header getter
532
+ * Use `application/javascript` for .js attachments
533
+ * Improve RFC2821 compliance for timelimits, especially for end-of-data
534
+ * Add Azerbaijani translations (Thanks to @mirjalal)
535
+ * Minor code cleanup for robustness
536
+ * Add Indonesian translations (Thanks to @ceceprawiro)
537
+ * Avoid `error_log` Debugoutput naming clash
538
+ * Add ability to parse server capabilities in response to EHLO (useful for SendGrid etc)
539
+ * Amended default values for WordWrap to match RFC
540
+ * Remove html2text converter class (has incompatible license)
541
+ * Provide new mechanism for injecting html to text converters
542
+ * Improve pointers to docs and support in README
543
+ * Add example file upload script
544
+ * Refactor and major cleanup of EasyPeasyICS, now a lot more usable
545
+ * Make set() method simpler and more reliable
546
+ * Add Malay translation (Thanks to @nawawi)
547
+ * Add Bulgarian translation (Thanks to @mialy)
548
+ * Add Armenian translation (Thanks to Hrayr Grigoryan)
549
+ * Add Slovenian translation (Thanks to Klemen Tušar)
550
+ * More efficient word wrapping
551
+ * Add support for S/MIME signing with additional CA certificate (thanks to @IgitBuh)
552
+ * Fix incorrect MIME structure when using S/MIME signing and isMail() (#372)
553
+ * Improved checks and error messages for missing extensions
554
+ * Store and report SMTP errors more consistently
555
+ * Add MIME multipart preamble for better Outlook compatibility
556
+ * Enable TLS encryption automatically if the server offers it
557
+ * Provide detailed errors when individual recipients fail
558
+ * Report more errors when connecting
559
+ * Add extras classes to composer classmap
560
+ * Expose stream_context_create options via new SMTPOptions property
561
+ * Automatic encoding switch to quoted-printable if message lines are too long
562
+ * Add Korean translation (Thanks to @ChalkPE)
563
+ * Provide a pointer to troubleshooting docs on SMTP connection failure
564
+
565
+ ## Version 5.2.9 (Sept 25th 2014)
566
+ * **Important: The autoloader is no longer autoloaded by the PHPMailer class**
567
+ * Update html2text from https://github.com/mtibben/html2text
568
+ * Improve Arabic translations (Thanks to @tarekdj)
569
+ * Consistent handling of connection variables in SMTP and POP3
570
+ * PHPDoc cleanup
571
+ * Update composer to use PHPUnit 4.1
572
+ * Pass consistent params to callbacks
573
+ * More consistent handling of error states and debug output
574
+ * Use property defaults, remove constructors
575
+ * Remove unreachable code
576
+ * Use older regex validation pattern for troublesome PCRE library versions
577
+ * Improve PCRE detection in older PHP versions
578
+ * Handle debug output consistently, and always in UTF-8
579
+ * Allow user-defined debug output method via a callable
580
+ * msgHTML now converts data URIs to embedded images
581
+ * SMTP::getLastReply() will now always be populated
582
+ * Improved example code in README
583
+ * Ensure long filenames in Content-Disposition are encoded correctly
584
+ * Simplify SMTP debug output mechanism, clarify levels with constants
585
+ * Add SMTP connection check example
586
+ * Simplify examples, don't use mysql* functions
587
+
588
+ ## Version 5.2.8 (May 14th 2014)
589
+ * Increase timeout to match RFC2821 section 4.5.3.2 and thus not fail greetdelays, fixes #104
590
+ * Add timestamps to default debug output
591
+ * Add connection events and new level 3 to debug output options
592
+ * Chinese language update (Thanks to @binaryoung)
593
+ * Allow custom Mailer types (Thanks to @michield)
594
+ * Cope with spaces around SMTP host specs
595
+ * Fix processing of multiple hosts in connect string
596
+ * Added Galician translation (Thanks to @donatorouco)
597
+ * Autoloader now prepends
598
+ * Docs updates
599
+ * Add Latvian translation (Thanks to @eddsstudio)
600
+ * Add Belarusian translation (Thanks to @amaksymiuk)
601
+ * Make autoloader work better on older PHP versions
602
+ * Avoid double-encoding if mbstring is overloading mail()
603
+ * Add Portuguese translation (Thanks to @Jonadabe)
604
+ * Make quoted-printable encoder respect line ending setting
605
+ * Improve Chinese translation (Thanks to @PeterDaveHello)
606
+ * Add Georgian translation (Thanks to @akalongman)
607
+ * Add Greek translation (Thanks to @lenasterg)
608
+ * Fix serverHostname on PHP < 5.3
609
+ * Improve performance of SMTP class
610
+ * Implement automatic 7bit downgrade
611
+ * Add Vietnamese translation (Thanks to @vinades)
612
+ * Improve example images, switch to PNG
613
+ * Add Croatian translation (Thanks to @hrvoj3e)
614
+ * Remove setting the Return-Path and deprecate the Return-path property - it's just wrong!
615
+ * Fix language file loading if CWD has changed (@stephandesouza)
616
+ * Add HTML5 email validation pattern
617
+ * Improve Turkish translations (Thanks to @yasinaydin)
618
+ * Improve Romanian translations (Thanks to @aflorea)
619
+ * Check php.ini for path to sendmail/qmail before using default
620
+ * Improve Farsi translation (Thanks to @MHM5000)
621
+ * Don't use quoted-printable encoding for multipart types
622
+ * Add Serbian translation (Thanks to ajevremovic at gmail.com)
623
+ * Remove useless PHP5 check
624
+ * Use SVG for build status badges
625
+ * Store MessageDate on creation
626
+ * Better default behaviour for validateAddress
627
+
628
+ ## Version 5.2.7 (September 12th 2013)
629
+ * Add Ukrainian translation from @Krezalis
630
+ * Support for do_verp
631
+ * Fix bug in CRAM-MD5 AUTH
632
+ * Propagate Debugoutput option to SMTP class (@Reblutus)
633
+ * Determine MIME type of attachments automatically
634
+ * Add cross-platform, multibyte-safe pathinfo replacement (with tests) and use it
635
+ * Add a new 'html' Debugoutput type
636
+ * Clean up SMTP debug output, remove embedded HTML
637
+ * Some small changes in header formatting to improve IETF msglint test results
638
+ * Update test_script to use some recently changed features, rename to code_generator
639
+ * Generated code actually works!
640
+ * Update SyntaxHighlighter
641
+ * Major overhaul and cleanup of example code
642
+ * New PHPMailer graphic
643
+ * msgHTML now uses RFC2392-compliant content ids
644
+ * Add line break normalization function and use it in msgHTML
645
+ * Don't set unnecessary reply-to addresses
646
+ * Make fakesendmail.sh a bit cleaner and safer
647
+ * Set a content-transfer-encoding on multiparts (fixes msglint error)
648
+ * Fix cid generation in msgHTML (Thanks to @digitalthought)
649
+ * Fix handling of multiple SMTP servers (Thanks to @NanoCaiordo)
650
+ * SMTP->connect() now supports stream context options (Thanks to @stanislavdavid)
651
+ * Add support for iCal event alternatives (Thanks to @reblutus)
652
+ * Update to Polish language file (Thanks to Krzysztof Kowalewski)
653
+ * Update to Norwegian language file (Thanks to @datagutten)
654
+ * Update to Hungarian language file (Thanks to @dominicus-75)
655
+ * Add Persian/Farsi translation from @jaii
656
+ * Make SMTPDebug property type match type in SMTP class
657
+ * Add unit tests for DKIM
658
+ * Major refactor of SMTP class
659
+ * Reformat to PSR-2 coding standard
660
+ * Introduce autoloader
661
+ * Allow overriding of SMTP class
662
+ * Overhaul of PHPDocs
663
+ * Fix broken Q-encoding
664
+ * Czech language update (Thanks to @nemelu)
665
+ * Removal of excess blank lines in messages
666
+ * Added fake POP server and unit tests for POP-before-SMTP
667
+
668
+ ## Version 5.2.6 (April 11th 2013)
669
+ * Reflect move to PHPMailer GitHub organisation at https://github.com/PHPMailer/PHPMailer
670
+ * Fix unbumped version numbers
671
+ * Update packagist.org with new location
672
+ * Clean up Changelog
673
+
674
+ ## Version 5.2.5 (April 6th 2013)
675
+ * First official release after move from Google Code
676
+ * Fixes for qmail when sending via mail()
677
+ * Merge in changes from Google code 5.2.4 release
678
+ * Minor coding standards cleanup in SMTP class
679
+ * Improved unit tests, now tests S/MIME signing
680
+ * Travis-CI support on GitHub, runs tests with fake SMTP server
681
+
682
+ ## Version 5.2.4 (February 19, 2013)
683
+ * Fix tag and version bug.
684
+ * un-deprecate isSMTP(), isMail(), IsSendmail() and isQmail().
685
+ * Numerous translation updates
686
+
687
+ ## Version 5.2.3 (February 8, 2013)
688
+ * Fix issue with older PCREs and ValidateAddress() (Bugz: 124)
689
+ * Add CRAM-MD5 authentication, thanks to Elijah madden, https://github.com/okonomiyaki3000
690
+ * Replacement of obsolete Quoted-Printable encoder with a much better implementation
691
+ * Composer package definition
692
+ * New language added: Hebrew
693
+
694
+ ## Version 5.2.2 (December 3, 2012)
695
+ * Some fixes and syncs from https://github.com/Synchro/PHPMailer
696
+ * Add Slovak translation, thanks to Michal Tinka
697
+
698
+ ## Version 5.2.2-rc2 (November 6, 2012)
699
+ * Fix SMTP server rotation (Bugz: 118)
700
+ * Allow override of autogen'ed 'Date' header (for Drupal's
701
+ og_mailinglist module)
702
+ * No whitespace after '-f' option (Bugz: 116)
703
+ * Work around potential warning (Bugz: 114)
704
+
705
+ ## Version 5.2.2-rc1 (September 28, 2012)
706
+ * Header encoding works with long lines (Bugz: 93)
707
+ * Turkish language update (Bugz: 94)
708
+ * undefined $pattern in EncodeQ bug squashed (Bugz: 98)
709
+ * use of mail() in safe_mode now works (Bugz: 96)
710
+ * ValidateAddress() now 'public static' so people can override the
711
+ default and use their own validation scheme.
712
+ * ValidateAddress() no longer uses broken FILTER_VALIDATE_EMAIL
713
+ * Added in AUTH PLAIN SMTP authentication
714
+
715
+ ## Version 5.2.2-beta2 (August 17, 2012)
716
+ * Fixed Postfix VERP support (Bugz: 92)
717
+ * Allow action_function callbacks to pass/use
718
+ the From address (passed as final param)
719
+ * Prevent inf look for get_lines() (Bugz: 77)
720
+ * New public var ($UseSendmailOptions). Only pass sendmail()
721
+ options iff we really are using sendmail or something sendmail
722
+ compatible. (Bugz: 75)
723
+ * default setting for LE returned to "\n" due to popular demand.
724
+
725
+ ## Version 5.2.2-beta1 (July 13, 2012)
726
+ * Expose PreSend() and PostSend() as public methods to allow
727
+ for more control if serializing message sending.
728
+ * GetSentMIMEMessage() only constructs the message copy when
729
+ needed. Save memory.
730
+ * Only pass params to mail() if the underlying MTA is
731
+ "sendmail" (as defined as "having the string sendmail
732
+ in its pathname") [#69]
733
+ * Attachments now work with Amazon SES and others [Bugz#70]
734
+ * Debug output now sent to stdout (via echo) or error_log [Bugz#5]
735
+ * New var: Debugoutput (for above) [Bugz#5]
736
+ * SMTP reads now Timeout aware (new var: Timeout=15) [Bugz#71]
737
+ * SMTP reads now can have a Timelimit associated with them
738
+ (new var: Timelimit=30)[Bugz#71]
739
+ * Fix quoting issue associated with charsets
740
+ * default setting for LE is now RFC compliant: "\r\n"
741
+ * Return-Path can now be user defined (new var: ReturnPath)
742
+ (the default is "" which implies no change from previous
743
+ behavior, which was to use either From or Sender) [Bugz#46]
744
+ * X-Mailer header can now be disabled (by setting to a
745
+ whitespace string, eg " ") [Bugz#66]
746
+ * Bugz closed: #68, #60, #42, #43, #59, #55, #66, #48, #49,
747
+ #52, #31, #41, #5. #70, #69
748
+
749
+ ## Version 5.2.1 (January 16, 2012)
750
+ * Closed several bugs #5
751
+ * Performance improvements
752
+ * MsgHTML() now returns the message as required.
753
+ * New method: GetSentMIMEMessage() (returns full copy of sent message)
754
+
755
+ ## Version 5.2 (July 19, 2011)
756
+ * protected MIME body and header
757
+ * better DKIM DNS Resource Record support
758
+ * better aly handling
759
+ * htmlfilter class added to extras
760
+ * moved to Apache Extras
761
+
762
+ ## Version 5.1 (October 20, 2009)
763
+ * fixed filename issue with AddStringAttachment (thanks to Tony)
764
+ * fixed "SingleTo" property, now works with Senmail, Qmail, and SMTP in
765
+ addition to PHP mail()
766
+ * added DKIM digital signing functionality, new properties:
767
+ - DKIM_domain (sets the domain name)
768
+ - DKIM_private (holds DKIM private key)
769
+ - DKIM_passphrase (holds your DKIM passphrase)
770
+ - DKIM_selector (holds the DKIM "selector")
771
+ - DKIM_identity (holds the identifying email address)
772
+ * added callback function support
773
+ - callback function parameters include:
774
+ result, to, cc, bcc, subject and body
775
+ - see the test/test_callback.php file for usage.
776
+ * added "auto" identity functionality
777
+ - can automatically add:
778
+ - Return-path (if Sender not set)
779
+ - Reply-To (if ReplyTo not set)
780
+ - can be disabled:
781
+ - $mail->SetFrom('yourname@yourdomain.com','First Last',false);
782
+ - or by adding the $mail->Sender and/or $mail->ReplyTo properties
783
+
784
+ Note: "auto" identity added to help with emails ending up in spam or junk boxes because of missing headers
785
+
786
+ ## Version 5.0.2 (May 24, 2009)
787
+ * Fix for missing attachments when inline graphics are present
788
+ * Fix for missing Cc in header when using SMTP (mail was sent,
789
+ but not displayed in header -- Cc receiver only saw email To:
790
+ line and no Cc line, but did get the email (To receiver
791
+ saw same)
792
+
793
+ ## Version 5.0.1 (April 05, 2009)
794
+ * Temporary fix for missing attachments
795
+
796
+ ## Version 5.0.0 (April 02, 2009)
797
+ With the release of this version, we are initiating a new version numbering
798
+ system to differentiate from the PHP4 version of PHPMailer.
799
+ Most notable in this release is fully object oriented code.
800
+
801
+ ### class.smtp.php:
802
+ * Refactored class.smtp.php to support new exception handling
803
+ * code size reduced from 29.2 Kb to 25.6 Kb
804
+ * Removed unnecessary functions from class.smtp.php:
805
+ - public function Expand($name) {
806
+ - public function Help($keyword="") {
807
+ - public function Noop() {
808
+ - public function Send($from) {
809
+ - public function SendOrMail($from) {
810
+ - public function Verify($name) {
811
+
812
+ ### class.phpmailer.php:
813
+ * Refactored class.phpmailer.php with new exception handling
814
+ * Changed processing functionality of Sendmail and Qmail so they cannot be
815
+ inadvertently used
816
+ * removed getFile() function, just became a simple wrapper for
817
+ file_get_contents()
818
+ * added check for PHP version (will gracefully exit if not at least PHP 5.0)
819
+ * enhanced code to check if an attachment source is the same as an embedded or
820
+ inline graphic source to eliminate duplicate attachments
821
+
822
+ ### New /test_script
823
+ We have written a test script you can use to test the script as part of your
824
+ installation. Once you press submit, the test script will send a multi-mime
825
+ email with either the message you type in or an HTML email with an inline
826
+ graphic. Two attachments are included in the email (one of the attachments
827
+ is also the inline graphic so you can see that only one copy of the graphic
828
+ is sent in the email). The test script will also display the functional
829
+ script that you can copy/paste to your editor to duplicate the functionality.
830
+
831
+ ### New examples
832
+ All new examples in both basic and advanced modes. Advanced examples show
833
+ Exception handling.
834
+
835
+ ### PHPDocumentator (phpdocs) documentation for PHPMailer version 5.0.0
836
+ All new documentation
837
+
838
+ ## Version 2.3 (November 06, 2008)
839
+ * added Arabic language (many thanks to Bahjat Al Mostafa)
840
+ * removed English language from language files and made it a default within
841
+ class.phpmailer.php - if no language is found, it will default to use
842
+ the english language translation
843
+ * fixed public/private declarations
844
+ * corrected line 1728, $basedir to $directory
845
+ * added $sign_cert_file to avoid improper duplicate use of $sign_key_file
846
+ * corrected $this->Hello on line 612 to $this->Helo
847
+ * changed default of $LE to "\r\n" to comply with RFC 2822. Can be set by the user
848
+ if default is not acceptable
849
+ * removed trim() from return results in EncodeQP
850
+ * /test and three files it contained are removed from version 2.3
851
+ * fixed phpunit.php for compliance with PHP5
852
+ * changed $this->AltBody = $textMsg; to $this->AltBody = html_entity_decode($textMsg);
853
+ * We have removed the /phpdoc from the downloads. All documentation is now on
854
+ the http://phpmailer.codeworxtech.com website.
855
+
856
+ ## Version 2.2.1 (July 19, 2008)
857
+ * fixed line 1092 in class.smtp.php (my apologies, error on my part)
858
+
859
+ ## Version 2.2 (July 15, 2008)
860
+ * Fixed redirect issue (display of UTF-8 in thank you redirect)
861
+ * fixed error in getResponse function declaration (class.pop3.php)
862
+ * PHPMailer now PHP6 compliant
863
+ * fixed line 1092 in class.smtp.php (endless loop from missing = sign)
864
+
865
+ ## Version 2.1 (Wed, June 04 2008)
866
+ NOTE: WE HAVE A NEW LANGUAGE VARIABLE FOR DIGITALLY SIGNED S/MIME EMAILS. IF YOU CAN HELP WITH LANGUAGES OTHER THAN ENGLISH AND SPANISH, IT WOULD BE APPRECIATED.
867
+
868
+ * added S/MIME functionality (ability to digitally sign emails)
869
+ BIG THANKS TO "sergiocambra" for posting this patch back in November 2007.
870
+ The "Signed Emails" functionality adds the Sign method to pass the private key
871
+ filename and the password to read it, and then email will be sent with
872
+ content-type multipart/signed and with the digital signature attached.
873
+ * fully compatible with E_STRICT error level
874
+ - Please note:
875
+ In about half the test environments this development version was subjected
876
+ to, an error was thrown for the date() functions used (line 1565 and 1569).
877
+ This is NOT a PHPMailer error, it is the result of an incorrectly configured
878
+ PHP5 installation. The fix is to modify your 'php.ini' file and include the
879
+ date.timezone = Etc/UTC (or your own zone)
880
+ directive, to your own server timezone
881
+ - If you do get this error, and are unable to access your php.ini file:
882
+ In your PHP script, add
883
+ `date_default_timezone_set('Etc/UTC');`
884
+ - do not try to use
885
+ `$myVar = date_default_timezone_get();`
886
+ as a test, it will throw an error.
887
+ * added ability to define path (mainly for embedded images)
888
+ function `MsgHTML($message,$basedir='')` ... where:
889
+ `$basedir` is the fully qualified path
890
+ * fixed `MsgHTML()` function:
891
+ - Embedded Images where images are specified by `<protocol>://` will not be altered or embedded
892
+ * fixed the return value of SMTP exit code ( pclose )
893
+ * addressed issue of multibyte characters in subject line and truncating
894
+ * added ability to have user specified Message ID
895
+ (default is still that PHPMailer create a unique Message ID)
896
+ * corrected unidentified message type to 'application/octet-stream'
897
+ * fixed chunk_split() multibyte issue (thanks to Colin Brown, et al).
898
+ * added check for added attachments
899
+ * enhanced conversion of HTML to text in MsgHTML (thanks to "brunny")
900
+
901
+ ## Version 2.1.0beta2 (Sun, Dec 02 2007)
902
+ * implemented updated EncodeQP (thanks to coolbru, aka Marcus Bointon)
903
+ * finished all testing, all known bugs corrected, enhancements tested
904
+
905
+ Note: will NOT work with PHP4.
906
+
907
+ Please note, this is BETA software **DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS; INTENDED STRICTLY FOR TESTING**
908
+
909
+ ## Version 2.1.0beta1
910
+ Please note, this is BETA software
911
+ ** DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS
912
+ INTENDED STRICTLY FOR TESTING
913
+
914
+ ## Version 2.0.0 rc2 (Fri, Nov 16 2007), interim release
915
+ * implements new property to control VERP in class.smtp.php
916
+ example (requires instantiating class.smtp.php):
917
+ $mail->do_verp = true;
918
+ * POP-before-SMTP functionality included, thanks to Richard Davey
919
+ (see class.pop3.php & pop3_before_smtp_test.php for examples)
920
+ * included example showing how to use PHPMailer with GMAIL
921
+ * fixed the missing Cc in SendMail() and Mail()
922
+
923
+ ## Version 2.0.0 rc1 (Thu, Nov 08 2007), interim release
924
+ * dramatically simplified using inline graphics ... it's fully automated and requires no user input
925
+ * added automatic document type detection for attachments and pictures
926
+ * added MsgHTML() function to replace Body tag for HTML emails
927
+ * fixed the SendMail security issues (input validation vulnerability)
928
+ * enhanced the AddAddresses functionality so that the "Name" portion is used in the email address
929
+ * removed the need to use the AltBody method (set from the HTML, or default text used)
930
+ * set the PHP Mail() function as the default (still support SendMail, SMTP Mail)
931
+ * removed the need to set the IsHTML property (set automatically)
932
+ * added Estonian language file by Indrek P&auml;ri
933
+ * added header injection patch
934
+ * added "set" method to permit users to create their own pseudo-properties like 'X-Headers', etc.
935
+ * fixed warning message in SMTP get_lines method
936
+ * added TLS/SSL SMTP support.
937
+ * PHPMailer has been tested with PHP4 (4.4.7) and PHP5 (5.2.7)
938
+ * Works with PHP installed as a module or as CGI-PHP
939
+ NOTE: will NOT work with PHP5 in E_STRICT error mode
940
+
941
+ ## Version 1.73 (Sun, Jun 10 2005)
942
+ * Fixed denial of service bug: http://www.cybsec.com/vuln/PHPMailer-DOS.pdf
943
+ * Now has a total of 20 translations
944
+ * Fixed alt attachments bug: https://sourceforge.net/p/phpmailer/bugs/120/
945
+
946
+ ## Version 1.72 (Wed, May 25 2004)
947
+ * Added Dutch, Swedish, Czech, Norwegian, and Turkish translations.
948
+ * Received: Removed this method because spam filter programs like
949
+ SpamAssassin reject this header.
950
+ * Fixed error count bug.
951
+ * SetLanguage default is now "language/".
952
+ * Fixed magic_quotes_runtime bug.
953
+
954
+ ## Version 1.71 (Tue, Jul 28 2003)
955
+ * Made several speed enhancements
956
+ * Added German and Italian translation files
957
+ * Fixed HELO/AUTH bugs on keep-alive connects
958
+ * Now provides an error message if language file does not load
959
+ * Fixed attachment EOL bug
960
+ * Updated some unclear documentation
961
+ * Added additional tests and improved others
962
+
963
+ ## Version 1.70 (Mon, Jun 20 2003)
964
+ * Added SMTP keep-alive support
965
+ * Added IsError method for error detection
966
+ * Added error message translation support (SetLanguage)
967
+ * Refactored many methods to increase library performance
968
+ * Hello now sends the newer EHLO message before HELO as per RFC 2821
969
+ * Removed the boundary class and replaced it with GetBoundary
970
+ * Removed queue support methods
971
+ * New $Hostname variable
972
+ * New Message-ID header
973
+ * Received header reformat
974
+ * Helo variable default changed to $Hostname
975
+ * Removed extra spaces in Content-Type definition (#667182)
976
+ * Return-Path should be set to Sender when set
977
+ * Adds Q or B encoding to headers when necessary
978
+ * quoted-encoding should now encode NULs \000
979
+ * Fixed encoding of body/AltBody (#553370)
980
+ * Adds "To: undisclosed-recipients:;" when all recipients are hidden (BCC)
981
+ * Multiple bug fixes
982
+
983
+ ## Version 1.65 (Fri, Aug 09 2002)
984
+ * Fixed non-visible attachment bug (#585097) for Outlook
985
+ * SMTP connections are now closed after each transaction
986
+ * Fixed SMTP::Expand return value
987
+ * Converted SMTP class documentation to phpDocumentor format
988
+
989
+ ## Version 1.62 (Wed, Jun 26 2002)
990
+ * Fixed multi-attach bug
991
+ * Set proper word wrapping
992
+ * Reduced memory use with attachments
993
+ * Added more debugging
994
+ * Changed documentation to phpDocumentor format
995
+
996
+ ## Version 1.60 (Sat, Mar 30 2002)
997
+ * Sendmail pipe and address patch (Christian Holtje)
998
+ * Added embedded image and read confirmation support (A. Ognio)
999
+ * Added unit tests
1000
+ * Added SMTP timeout support (*nix only)
1001
+ * Added possibly temporary PluginDir variable for SMTP class
1002
+ * Added LE message line ending variable
1003
+ * Refactored boundary and attachment code
1004
+ * Eliminated SMTP class warnings
1005
+ * Added SendToQueue method for future queuing support
1006
+
1007
+ ## Version 1.54 (Wed, Dec 19 2001)
1008
+ * Add some queuing support code
1009
+ * Fixed a pesky multi/alt bug
1010
+ * Messages are no longer forced to have "To" addresses
1011
+
1012
+ ## Version 1.50 (Thu, Nov 08 2001)
1013
+ * Fix extra lines when not using SMTP mailer
1014
+ * Set WordWrap variable to int with a zero default
1015
+
1016
+ ## Version 1.47 (Tue, Oct 16 2001)
1017
+ * Fixed Received header code format
1018
+ * Fixed AltBody order error
1019
+ * Fixed alternate port warning
1020
+
1021
+ ## Version 1.45 (Tue, Sep 25 2001)
1022
+ * Added enhanced SMTP debug support
1023
+ * Added support for multiple ports on SMTP
1024
+ * Added Received header for tracing
1025
+ * Fixed AddStringAttachment encoding
1026
+ * Fixed possible header name quote bug
1027
+ * Fixed wordwrap() trim bug
1028
+ * Couple other small bug fixes
1029
+
1030
+ ## Version 1.41 (Wed, Aug 22 2001)
1031
+ * Fixed AltBody bug w/o attachments
1032
+ * Fixed rfc_date() for certain mail servers
1033
+
1034
+ ## Version 1.40 (Sun, Aug 12 2001)
1035
+ * Added multipart/alternative support (AltBody)
1036
+ * Documentation update
1037
+ * Fixed bug in Mercury MTA
1038
+
1039
+ ## Version 1.29 (Fri, Aug 03 2001)
1040
+ * Added AddStringAttachment() method
1041
+ * Added SMTP authentication support
1042
+
1043
+ ## Version 1.28 (Mon, Jul 30 2001)
1044
+ * Fixed a typo in SMTP class
1045
+ * Fixed header issue with Imail (win32) SMTP server
1046
+ * Made fopen() calls for attachments use "rb" to fix win32 error
1047
+
1048
+ ## Version 1.25 (Mon, Jul 02 2001)
1049
+ * Added RFC 822 date fix (Patrice)
1050
+ * Added improved error handling by adding a $ErrorInfo variable
1051
+ * Removed MailerDebug variable (obsolete with new error handler)
1052
+
1053
+ ## Version 1.20 (Mon, Jun 25 2001)
1054
+ * Added quoted-printable encoding (Patrice)
1055
+ * Set Version as public and removed PrintVersion()
1056
+ * Changed phpdoc to only display public variables and methods
1057
+
1058
+ ## Version 1.19 (Thu, Jun 21 2001)
1059
+ * Fixed MS Mail header bug
1060
+ * Added fix for Bcc problem with mail(). *Does not work on Win32*
1061
+ (See PHP bug report: https://bugs.php.net/bug.php?id=11616
1062
+ * mail() no longer passes a fifth parameter when not needed
1063
+
1064
+ ## Version 1.15 (Fri, Jun 15 2001)
1065
+ Note: these changes contributed by Patrice Fournier
1066
+ * Changed all remaining \n to \r\n
1067
+ * Bcc: header no longer written to message except
1068
+ when sent directly to sendmail
1069
+ * Added a small message to non-MIME compliant mail reader
1070
+ * Added Sender variable to change the Sender email
1071
+ used in -f for sendmail/mail and in 'MAIL FROM' for smtp mode
1072
+ * Changed boundary setting to a place it will be set only once
1073
+ * Removed transfer encoding for whole message when using multipart
1074
+ * Message body now uses Encoding in multipart messages
1075
+ * Can set encoding and type to attachments 7bit, 8bit
1076
+ and binary attachment are sent as is, base64 are encoded
1077
+ * Can set Encoding to base64 to send 8 bits body
1078
+ through 7 bits servers
1079
+
1080
+ ## Version 1.10 (Tue, Jun 12 2001)
1081
+ * Fixed win32 mail header bug (printed out headers in message body)
1082
+
1083
+ ## Version 1.09 (Fri, Jun 08 2001)
1084
+ * Changed date header to work with Netscape mail programs
1085
+ * Altered phpdoc documentation
1086
+
1087
+ ## Version 1.08 (Tue, Jun 05 2001)
1088
+ * Added enhanced error-checking
1089
+ * Added phpdoc documentation to source
1090
+
1091
+ ## Version 1.06 (Fri, Jun 01 2001)
1092
+ * Added optional name for file attachments
1093
+
1094
+ ## Version 1.05 (Tue, May 29 2001)
1095
+ * Code cleanup
1096
+ * Eliminated sendmail header warning message
1097
+ * Fixed possible SMTP error
1098
+
1099
+ ## Version 1.03 (Thu, May 24 2001)
1100
+ * Fixed problem where qmail sends out duplicate messages
1101
+
1102
+ ## Version 1.02 (Wed, May 23 2001)
1103
+ * Added multiple recipient and attachment Clear* methods
1104
+ * Added Sendmail public variable
1105
+ * Fixed problem with loading SMTP library multiple times
1106
+
1107
+ ## Version 0.98 (Tue, May 22 2001)
1108
+ * Fixed problem with redundant mail hosts sending out multiple messages
1109
+ * Added additional error handler code
1110
+ * Added AddCustomHeader() function
1111
+ * Added support for Microsoft mail client headers (affects priority)
1112
+ * Fixed small bug with Mailer variable
1113
+ * Added PrintVersion() function
1114
+
1115
+ ## Version 0.92 (Tue, May 15 2001)
1116
+ * Changed file names to class.phpmailer.php and class.smtp.php to match
1117
+ current PHP class trend.
1118
+ * Fixed problem where body not being printed when a message is attached
1119
+ * Several small bug fixes
1120
+
1121
+ ## Version 0.90 (Tue, April 17 2001)
1122
+ * Initial public release