@depup/nodemailer 7.0.12-depup.0

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 (47) hide show
  1. package/.gitattributes +6 -0
  2. package/.ncurc.js +9 -0
  3. package/.prettierignore +8 -0
  4. package/.prettierrc +12 -0
  5. package/.prettierrc.js +10 -0
  6. package/.release-please-config.json +9 -0
  7. package/CHANGELOG.md +929 -0
  8. package/CODE_OF_CONDUCT.md +76 -0
  9. package/LICENSE +16 -0
  10. package/README.md +86 -0
  11. package/SECURITY.txt +22 -0
  12. package/eslint.config.js +88 -0
  13. package/lib/addressparser/index.js +383 -0
  14. package/lib/base64/index.js +139 -0
  15. package/lib/dkim/index.js +253 -0
  16. package/lib/dkim/message-parser.js +155 -0
  17. package/lib/dkim/relaxed-body.js +154 -0
  18. package/lib/dkim/sign.js +117 -0
  19. package/lib/fetch/cookies.js +281 -0
  20. package/lib/fetch/index.js +280 -0
  21. package/lib/json-transport/index.js +82 -0
  22. package/lib/mail-composer/index.js +629 -0
  23. package/lib/mailer/index.js +441 -0
  24. package/lib/mailer/mail-message.js +316 -0
  25. package/lib/mime-funcs/index.js +625 -0
  26. package/lib/mime-funcs/mime-types.js +2113 -0
  27. package/lib/mime-node/index.js +1316 -0
  28. package/lib/mime-node/last-newline.js +33 -0
  29. package/lib/mime-node/le-unix.js +43 -0
  30. package/lib/mime-node/le-windows.js +52 -0
  31. package/lib/nodemailer.js +157 -0
  32. package/lib/punycode/index.js +460 -0
  33. package/lib/qp/index.js +227 -0
  34. package/lib/sendmail-transport/index.js +210 -0
  35. package/lib/ses-transport/index.js +234 -0
  36. package/lib/shared/index.js +754 -0
  37. package/lib/smtp-connection/data-stream.js +108 -0
  38. package/lib/smtp-connection/http-proxy-client.js +143 -0
  39. package/lib/smtp-connection/index.js +1865 -0
  40. package/lib/smtp-pool/index.js +652 -0
  41. package/lib/smtp-pool/pool-resource.js +259 -0
  42. package/lib/smtp-transport/index.js +421 -0
  43. package/lib/stream-transport/index.js +135 -0
  44. package/lib/well-known/index.js +47 -0
  45. package/lib/well-known/services.json +611 -0
  46. package/lib/xoauth2/index.js +427 -0
  47. package/package.json +47 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,929 @@
1
+ # CHANGELOG
2
+
3
+ ## [7.0.12](https://github.com/nodemailer/nodemailer/compare/v7.0.11...v7.0.12) (2025-12-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * added support for REQUIRETLS ([#1793](https://github.com/nodemailer/nodemailer/issues/1793)) ([053ce6a](https://github.com/nodemailer/nodemailer/commit/053ce6a772a7c608e6bee7f58ebe9900afbd9b84))
9
+ * use 8bit encoding for message/rfc822 attachments ([adf8611](https://github.com/nodemailer/nodemailer/commit/adf86113217b23ff3cd1191af5cd1d360fcc313b))
10
+
11
+ ## [7.0.11](https://github.com/nodemailer/nodemailer/compare/v7.0.10...v7.0.11) (2025-11-26)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * prevent stack overflow DoS in addressparser with deeply nested groups ([b61b9c0](https://github.com/nodemailer/nodemailer/commit/b61b9c0cfd682b6f647754ca338373b68336a150))
17
+
18
+ ## [7.0.10](https://github.com/nodemailer/nodemailer/compare/v7.0.9...v7.0.10) (2025-10-23)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * Increase data URI size limit from 100KB to 50MB and preserve content type ([28dbf3f](https://github.com/nodemailer/nodemailer/commit/28dbf3fe129653f5756c150a98dc40593bfb2cfe))
24
+
25
+ ## [7.0.9](https://github.com/nodemailer/nodemailer/compare/v7.0.8...v7.0.9) (2025-10-07)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **release:** Trying to fix release proecess by upgrading Node version in runner ([579fce4](https://github.com/nodemailer/nodemailer/commit/579fce4683eb588891613a6c9a00d8092e8c62d1))
31
+
32
+ ## [7.0.8](https://github.com/nodemailer/nodemailer/compare/v7.0.7...v7.0.8) (2025-10-07)
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * **addressparser:** flatten nested groups per RFC 5322 ([8f8a77c](https://github.com/nodemailer/nodemailer/commit/8f8a77c67f0ba94ddf4e16c68f604a5920fb5d26))
38
+
39
+ ## [7.0.7](https://github.com/nodemailer/nodemailer/compare/v7.0.6...v7.0.7) (2025-10-05)
40
+
41
+ ### Bug Fixes
42
+
43
+ - **addressparser:** Fixed addressparser handling of quoted nested email addresses ([1150d99](https://github.com/nodemailer/nodemailer/commit/1150d99fba77280df2cfb1885c43df23109a8626))
44
+ - **dns:** add memory leak prevention for DNS cache ([0240d67](https://github.com/nodemailer/nodemailer/commit/0240d6795ded6d8008d102161a729f120b6d786a))
45
+ - **linter:** Updated eslint and created prettier formatting task ([df13b74](https://github.com/nodemailer/nodemailer/commit/df13b7487e368acded35e45d0887d23c89c9177a))
46
+ - refresh expired DNS cache on error ([#1759](https://github.com/nodemailer/nodemailer/issues/1759)) ([ea0fc5a](https://github.com/nodemailer/nodemailer/commit/ea0fc5a6633a3546f4b00fcf2f428e9ca732cdb6))
47
+ - resolve linter errors in DNS cache tests ([3b8982c](https://github.com/nodemailer/nodemailer/commit/3b8982c1f24508089a8757b74039000a4498b158))
48
+
49
+ ## [7.0.6](https://github.com/nodemailer/nodemailer/compare/v7.0.5...v7.0.6) (2025-08-27)
50
+
51
+ ### Bug Fixes
52
+
53
+ - **encoder:** avoid silent data loss by properly flushing trailing base64 ([#1747](https://github.com/nodemailer/nodemailer/issues/1747)) ([01ae76f](https://github.com/nodemailer/nodemailer/commit/01ae76f2cfe991c0c3fe80170f236da60531496b))
54
+ - handle multiple XOAUTH2 token requests correctly ([#1754](https://github.com/nodemailer/nodemailer/issues/1754)) ([dbe0028](https://github.com/nodemailer/nodemailer/commit/dbe00286351cddf012726a41a96ae613d30a34ee))
55
+ - ReDoS vulnerability in parseDataURI and \_processDataUrl ([#1755](https://github.com/nodemailer/nodemailer/issues/1755)) ([90b3e24](https://github.com/nodemailer/nodemailer/commit/90b3e24d23929ebf9f4e16261049b40ee4055a39))
56
+
57
+ ## [7.0.5](https://github.com/nodemailer/nodemailer/compare/v7.0.4...v7.0.5) (2025-07-07)
58
+
59
+ ### Bug Fixes
60
+
61
+ - updated well known delivery service list ([fa2724b](https://github.com/nodemailer/nodemailer/commit/fa2724b337eb8d8fdcdd788fe903980b061316b8))
62
+
63
+ ## [7.0.4](https://github.com/nodemailer/nodemailer/compare/v7.0.3...v7.0.4) (2025-06-29)
64
+
65
+ ### Bug Fixes
66
+
67
+ - **pools:** Emit 'clear' once transporter is idle and all connections are closed ([839e286](https://github.com/nodemailer/nodemailer/commit/839e28634c9a93ae4321f399a8c893bf487a09fa))
68
+ - **smtp-connection:** jsdoc public annotation for socket ([#1741](https://github.com/nodemailer/nodemailer/issues/1741)) ([c45c84f](https://github.com/nodemailer/nodemailer/commit/c45c84fe9b8e2ec5e0615ab02d4197473911ab3e))
69
+ - **well-known-services:** Added AliyunQiye ([bb9e6da](https://github.com/nodemailer/nodemailer/commit/bb9e6daffb632d7d8f969359859f88a138de3a48))
70
+
71
+ ## [7.0.3](https://github.com/nodemailer/nodemailer/compare/v7.0.2...v7.0.3) (2025-05-08)
72
+
73
+ ### Bug Fixes
74
+
75
+ - **attachments:** Set the default transfer encoding for message/rfc822 attachments as '7bit' ([007d5f3](https://github.com/nodemailer/nodemailer/commit/007d5f3f40908c588f1db46c76de8b64ff429327))
76
+
77
+ ## [7.0.2](https://github.com/nodemailer/nodemailer/compare/v7.0.1...v7.0.2) (2025-05-04)
78
+
79
+ ### Bug Fixes
80
+
81
+ - **ses:** Fixed structured from header ([faa9a5e](https://github.com/nodemailer/nodemailer/commit/faa9a5eafaacbaf85de3540466a04636e12729b3))
82
+
83
+ ## [7.0.1](https://github.com/nodemailer/nodemailer/compare/v7.0.0...v7.0.1) (2025-05-04)
84
+
85
+ ### Bug Fixes
86
+
87
+ - **ses:** Use formatted FromEmailAddress for SES emails ([821cd09](https://github.com/nodemailer/nodemailer/commit/821cd09002f16c20369cc728b9414c7eb99e4113))
88
+
89
+ ## [7.0.0](https://github.com/nodemailer/nodemailer/compare/v6.10.1...v7.0.0) (2025-05-03)
90
+
91
+ ### ⚠ BREAKING CHANGES
92
+
93
+ - SESv2 SDK support, removed older SES SDK v2 and v3 , removed SES rate limiting and idling features
94
+
95
+ ### Features
96
+
97
+ - SESv2 SDK support, removed older SES SDK v2 and v3 , removed SES rate limiting and idling features ([15db667](https://github.com/nodemailer/nodemailer/commit/15db667af2d0a5ed835281cfdbab16ee73b5edce))
98
+
99
+ ## [6.10.1](https://github.com/nodemailer/nodemailer/compare/v6.10.0...v6.10.1) (2025-02-06)
100
+
101
+ ### Bug Fixes
102
+
103
+ - close correct socket ([a18062c](https://github.com/nodemailer/nodemailer/commit/a18062c04d0e05ca4357fbe8f0a59b690fa5391e))
104
+
105
+ ## [6.10.0](https://github.com/nodemailer/nodemailer/compare/v6.9.16...v6.10.0) (2025-01-23)
106
+
107
+ ### Features
108
+
109
+ - **services:** add Seznam email service configuration ([#1695](https://github.com/nodemailer/nodemailer/issues/1695)) ([d1ae0a8](https://github.com/nodemailer/nodemailer/commit/d1ae0a86883ba6011a49a5bbdf076098e2e3637a))
110
+
111
+ ### Bug Fixes
112
+
113
+ - **proxy:** Set error and timeout errors for proxied sockets ([aa0c99c](https://github.com/nodemailer/nodemailer/commit/aa0c99c8f25440bb3dc91f4f3448777c800604d7))
114
+
115
+ ## [6.9.16](https://github.com/nodemailer/nodemailer/compare/v6.9.15...v6.9.16) (2024-10-28)
116
+
117
+ ### Bug Fixes
118
+
119
+ - **addressparser:** Correctly detect if user local part is attached to domain part ([f2096c5](https://github.com/nodemailer/nodemailer/commit/f2096c51b92a69ecfbcc15884c28cb2c2f00b826))
120
+
121
+ ## [6.9.15](https://github.com/nodemailer/nodemailer/compare/v6.9.14...v6.9.15) (2024-08-08)
122
+
123
+ ### Bug Fixes
124
+
125
+ - Fix memory leak ([#1667](https://github.com/nodemailer/nodemailer/issues/1667)) ([baa28f6](https://github.com/nodemailer/nodemailer/commit/baa28f659641a4bc30360633673d851618f8e8bd))
126
+ - **mime:** Added GeoJSON closes [#1637](https://github.com/nodemailer/nodemailer/issues/1637) ([#1665](https://github.com/nodemailer/nodemailer/issues/1665)) ([79b8293](https://github.com/nodemailer/nodemailer/commit/79b8293ad557d36f066b4675e649dd80362fd45b))
127
+
128
+ ## [6.9.14](https://github.com/nodemailer/nodemailer/compare/v6.9.13...v6.9.14) (2024-06-19)
129
+
130
+ ### Bug Fixes
131
+
132
+ - **api:** Added support for Ethereal authentication ([56b2205](https://github.com/nodemailer/nodemailer/commit/56b22052a98de9e363f6c4d26d1512925349c3f3))
133
+ - **services.json:** Add Email Services Provider Feishu Mail (CN) ([#1648](https://github.com/nodemailer/nodemailer/issues/1648)) ([e9e9ecc](https://github.com/nodemailer/nodemailer/commit/e9e9ecc99b352948a912868c7912b280a05178c6))
134
+ - **services.json:** update Mailtrap host and port in well known ([#1652](https://github.com/nodemailer/nodemailer/issues/1652)) ([fc2c9ea](https://github.com/nodemailer/nodemailer/commit/fc2c9ea0b4c4f4e514143d2a138c9a23095fc827))
135
+ - **well-known-services:** Add Loopia in well known services ([#1655](https://github.com/nodemailer/nodemailer/issues/1655)) ([21a28a1](https://github.com/nodemailer/nodemailer/commit/21a28a18fc9fdf8e0e86ddd846e54641395b2cb6))
136
+
137
+ ## [6.9.13](https://github.com/nodemailer/nodemailer/compare/v6.9.12...v6.9.13) (2024-03-20)
138
+
139
+ ### Bug Fixes
140
+
141
+ - **tls:** Ensure servername for SMTP ([d66fdd3](https://github.com/nodemailer/nodemailer/commit/d66fdd3dccacc4bc79d697fe9009204cc8d4bde0))
142
+
143
+ ## [6.9.12](https://github.com/nodemailer/nodemailer/compare/v6.9.11...v6.9.12) (2024-03-08)
144
+
145
+ ### Bug Fixes
146
+
147
+ - **message-generation:** Escape single quote in address names ([4ae5fad](https://github.com/nodemailer/nodemailer/commit/4ae5fadeaac70ba91abf529fcaae65f829a39101))
148
+
149
+ ## [6.9.11](https://github.com/nodemailer/nodemailer/compare/v6.9.10...v6.9.11) (2024-02-29)
150
+
151
+ ### Bug Fixes
152
+
153
+ - **headers:** Ensure that Content-type is the bottom header ([c7cf97e](https://github.com/nodemailer/nodemailer/commit/c7cf97e5ecc83f8eee773359951df995c9945446))
154
+
155
+ ## [6.9.10](https://github.com/nodemailer/nodemailer/compare/v6.9.9...v6.9.10) (2024-02-22)
156
+
157
+ ### Bug Fixes
158
+
159
+ - **data-uri:** Do not use regular expressions for parsing data URI schemes ([12e65e9](https://github.com/nodemailer/nodemailer/commit/12e65e975d80efe6bafe6de4590829b3b5ebb492))
160
+ - **data-uri:** Moved all data-uri regexes to use the non-regex parseDataUri method ([edd5dfe](https://github.com/nodemailer/nodemailer/commit/edd5dfe5ce9b725f8b8ae2830797f65b2a2b0a33))
161
+
162
+ ## [6.9.9](https://github.com/nodemailer/nodemailer/compare/v6.9.8...v6.9.9) (2024-02-01)
163
+
164
+ ### Bug Fixes
165
+
166
+ - **security:** Fix issues described in GHSA-9h6g-pr28-7cqp. Do not use eternal matching pattern if only a few occurences are expected ([dd8f5e8](https://github.com/nodemailer/nodemailer/commit/dd8f5e8a4ddc99992e31df76bcff9c590035cd4a))
167
+ - **tests:** Use native node test runner, added code coverage support, removed grunt ([#1604](https://github.com/nodemailer/nodemailer/issues/1604)) ([be45c1b](https://github.com/nodemailer/nodemailer/commit/be45c1b299d012358d69247019391a02734d70af))
168
+
169
+ ## [6.9.8](https://github.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.8) (2023-12-30)
170
+
171
+ ### Bug Fixes
172
+
173
+ - **punycode:** do not use native punycode module ([b4d0e0c](https://github.com/nodemailer/nodemailer/commit/b4d0e0c7cc4b15bc4d9e287f91d1bcaca87508b0))
174
+
175
+ ## [6.9.7](https://github.com/nodemailer/nodemailer/compare/v6.9.6...v6.9.7) (2023-10-22)
176
+
177
+ ### Bug Fixes
178
+
179
+ - **customAuth:** Do not require user and pass to be set for custom authentication schemes (fixes [#1584](https://github.com/nodemailer/nodemailer/issues/1584)) ([41d482c](https://github.com/nodemailer/nodemailer/commit/41d482c3f01e26111b06f3e46351b193db3fb5cb))
180
+
181
+ ## [6.9.6](https://github.com/nodemailer/nodemailer/compare/v6.9.5...v6.9.6) (2023-10-09)
182
+
183
+ ### Bug Fixes
184
+
185
+ - **inline:** Use 'inline' as the default Content Dispostion value for embedded images ([db32c93](https://github.com/nodemailer/nodemailer/commit/db32c93fefee527bcc239f13056e5d9181a4d8af))
186
+ - **tests:** Removed Node v12 from test matrix as it is not compatible with the test framework anymore ([7fe0a60](https://github.com/nodemailer/nodemailer/commit/7fe0a608ed6bcb70dc6b2de543ebfc3a30abf984))
187
+
188
+ ## [6.9.5](https://github.com/nodemailer/nodemailer/compare/v6.9.4...v6.9.5) (2023-09-06)
189
+
190
+ ### Bug Fixes
191
+
192
+ - **license:** Updated license year ([da4744e](https://github.com/nodemailer/nodemailer/commit/da4744e491f3a68f4f68e4073684370592630e01))
193
+
194
+ ## 6.9.4 2023-07-19
195
+
196
+ - Renamed SendinBlue to Brevo
197
+
198
+ ## 6.9.3 2023-05-29
199
+
200
+ - Specified license identifier (was defined as MIT, actual value MIT-0)
201
+ - If SMTP server disconnects with a message, process it and include as part of the response error
202
+
203
+ ## 6.9.2 2023-05-11
204
+
205
+ - Fix uncaught exception on invalid attachment content payload
206
+
207
+ ## 6.9.1 2023-01-27
208
+
209
+ - Fix base64 encoding for emoji bytes in encoded words
210
+
211
+ ## 6.9.0 2023-01-12
212
+
213
+ - Do not throw if failed to resolve IPv4 addresses
214
+ - Include EHLO extensions in the send response
215
+ - fix sendMail function: callback should be optional
216
+
217
+ ## 6.8.0 2022-09-28
218
+
219
+ - Add DNS timeout (huksley)
220
+ - add dns.REFUSED (lucagianfelici)
221
+
222
+ ## 6.7.8 2022-08-11
223
+
224
+ - Allow to use multiple Reply-To addresses
225
+
226
+ ## 6.7.7 2022-07-06
227
+
228
+ - Resolver fixes
229
+
230
+ ## 6.7.5 2022-05-04
231
+
232
+ - No changes, pushing a new README to npmjs.org
233
+
234
+ ## 6.7.4 2022-04-29
235
+
236
+ - Ensure compatibility with Node 18
237
+ - Replaced Travis with Github Actions
238
+
239
+ ## 6.7.3 2022-03-21
240
+
241
+ - Typo fixes
242
+ - Added stale issue automation fir Github
243
+ - Add Infomaniak config to well known service (popod)
244
+ - Update Outlook/Hotmail host in well known services (popod)
245
+ - fix: DSN recipient gets ignored (KornKalle)
246
+
247
+ ## 6.7.2 2021-11-26
248
+
249
+ - Fix proxies for account verification
250
+
251
+ ## 6.7.1 2021-11-15
252
+
253
+ - fix verify on ses-transport (stanofsky)
254
+
255
+ ## 6.7.0 2021-10-11
256
+
257
+ - Updated DNS resolving logic. If there are multiple responses for a A/AAAA record, then loop these randomly instead of only caching the first one
258
+
259
+ ## 6.6.5 2021-09-23
260
+
261
+ - Replaced Object.values() and Array.flat() with polyfills to allow using Nodemailer in Node v6+
262
+
263
+ ## 6.6.4 2021-09-22
264
+
265
+ - Better compatibility with IPv6-only SMTP hosts (oxzi)
266
+ - Fix ses verify for sdk v3 (hannesvdvreken)
267
+ - Added SECURITY.txt for contact info
268
+
269
+ ## 6.6.3 2021-07-14
270
+
271
+ - Do not show passwords in SMTP transaction logs. All passwords used in logging are replaced by `"/* secret */"`
272
+
273
+ ## 6.6.1 2021-05-23
274
+
275
+ - Fixed address formatting issue where newlines in an email address, if provided via address object, were not properly removed. Reported by tmazeika (#1289)
276
+
277
+ ## 6.6.0 2021-04-28
278
+
279
+ - Added new option `newline` for MailComposer
280
+ - aws ses connection verification (Ognjen Jevremovic)
281
+
282
+ ## 6.5.0 2021-02-26
283
+
284
+ - Pass through textEncoding to subnodes
285
+ - Added support for AWS SES v3 SDK
286
+ - Fixed tests
287
+
288
+ ## 6.4.18 2021-02-11
289
+
290
+ - Updated README
291
+
292
+ ## 6.4.17 2020-12-11
293
+
294
+ - Allow mixing attachments with caendar alternatives
295
+
296
+ ## 6.4.16 2020-11-12
297
+
298
+ - Applied updated prettier formating rules
299
+
300
+ ## 6.4.15 2020-11-06
301
+
302
+ - Minor changes in header key casing
303
+
304
+ ## 6.4.14 2020-10-14
305
+
306
+ - Disabled postinstall script
307
+
308
+ ## 6.4.13 2020-10-02
309
+
310
+ - Fix normalizeHeaderKey method for single node messages
311
+
312
+ ## 6.4.12 2020-09-30
313
+
314
+ - Better handling of attachment filenames that include quote symbols
315
+ - Includes all information from the oath2 error response in the error message (Normal Gaussian) [1787f227]
316
+
317
+ ## 6.4.11 2020-07-29
318
+
319
+ - Fixed escape sequence handling in address parsing
320
+
321
+ ## 6.4.10 2020-06-17
322
+
323
+ - Fixed RFC822 output for MailComposer when using invalid content-type value. Mostly relevant if message attachments have stragne content-type values set.
324
+
325
+ ## 6.4.7 2020-05-28
326
+
327
+ - Always set charset=utf-8 for Content-Type headers
328
+ - Catch error when using invalid crypto.sign input
329
+
330
+ ## 6.4.6 2020-03-20
331
+
332
+ - fix: `requeueAttempts=n` should requeue `n` times (Patrick Malouin) [a27ed2f7]
333
+
334
+ ## 6.4.4 2020-03-01
335
+
336
+ - Add `options.forceAuth` for SMTP (Patrick Malouin) [a27ed2f7]
337
+
338
+ ## 6.4.3 2020-02-22
339
+
340
+ - Added an option to specify max number of requeues when connection closes unexpectedly (Igor Sechyn) [8a927f5a]
341
+
342
+ ## 6.4.2 2019-12-11
343
+
344
+ - Fixed bug where array item was used with a potentially empty array
345
+
346
+ ## 6.4.1 2019-12-07
347
+
348
+ - Fix processing server output with unterminated responses
349
+
350
+ ## 6.4.0 2019-12-04
351
+
352
+ - Do not use auth if server does not advertise AUTH support [f419b09d]
353
+ - add dns.CONNREFUSED (Hiroyuki Okada) [5c4c8ca8]
354
+
355
+ ## 6.3.1 2019-10-09
356
+
357
+ - Ignore "end" events because it might be "error" after it (dex4er) [72bade9]
358
+ - Set username and password on the connection proxy object correctly (UsamaAshraf) [250b1a8]
359
+ - Support more DNS errors (madarche) [2391aa4]
360
+
361
+ ## 6.3.0 2019-07-14
362
+
363
+ - Added new option to pass a set of httpHeaders to be sent when fetching attachments. See [PR #1034](https://github.com/nodemailer/nodemailer/pull/1034)
364
+
365
+ ## 6.2.1 2019-05-24
366
+
367
+ - No changes. It is the same as 6.2.0 that was accidentally published as 6.2.1 to npm
368
+
369
+ ## 6.2.0 2019-05-24
370
+
371
+ - Added new option for addressparser: `flatten`. If true then ignores group names and returns a single list of all addresses
372
+
373
+ ## 6.1.1 2019-04-20
374
+
375
+ - Fixed regression bug with missing smtp `authMethod` property
376
+
377
+ ## 6.1.0 2019-04-06
378
+
379
+ - Added new message property `amp` for providing AMP4EMAIL content
380
+
381
+ ## 6.0.0 2019-03-25
382
+
383
+ - SMTPConnection: use removeListener instead of removeAllListeners (xr0master) [ddc4af15]
384
+ Using removeListener should fix memory leak with Node.js streams
385
+
386
+ ## 5.1.1 2019-01-09
387
+
388
+ - Added missing option argument for custom auth
389
+
390
+ ## 5.1.0 2019-01-09
391
+
392
+ - Official support for custom authentication methods and examples (examples/custom-auth-async.js and examples/custom-auth-cb.js)
393
+
394
+ ## 5.0.1 2019-01-09
395
+
396
+ - Fixed regression error to support Node versions lower than 6.11
397
+ - Added expiremental custom authentication support
398
+
399
+ ## 5.0.0 2018-12-28
400
+
401
+ - Start using dns.resolve() instead of dns.lookup() for resolving SMTP hostnames. Might be breaking change on some environments so upgrade with care
402
+ - Show more logs for renewing OAuth2 tokens, previously it was not possible to see what actually failed
403
+
404
+ ## 4.7.0 2018-11-19
405
+
406
+ - Cleaned up List-\* header generation
407
+ - Fixed 'full' return option for DSN (klaronix) [23b93a3b]
408
+ - Support promises `for mailcomposer.build()`
409
+
410
+ ## 4.6.8 2018-08-15
411
+
412
+ - Use first IP address from DNS resolution when using a proxy (Limbozz) [d4ca847c]
413
+ - Return raw email from SES transport (gabegorelick) [3aa08967]
414
+
415
+ ## 4.6.7 2018-06-15
416
+
417
+ - Added option `skipEncoding` to JSONTransport
418
+
419
+ ## 4.6.6 2018-06-10
420
+
421
+ - Fixes mime encoded-word compatibility issue with invalid clients like Zimbra
422
+
423
+ ## 4.6.5 2018-05-23
424
+
425
+ - Fixed broken DKIM stream in Node.js v10
426
+ - Updated error messages for SMTP responses to not include a newline
427
+
428
+ ## 4.6.4 2018-03-31
429
+
430
+ - Readded logo author link to README that was accidentally removed a while ago
431
+
432
+ ## 4.6.3 2018-03-13
433
+
434
+ - Removed unneeded dependency
435
+
436
+ ## 4.6.2 2018-03-06
437
+
438
+ - When redirecting URL calls then do not include original POST content
439
+
440
+ ## 4.6.1 2018-03-06
441
+
442
+ - Fixed Smtp connection freezing, when trying to send after close / quit (twawszczak) [73d3911c]
443
+
444
+ ## 4.6.0 2018-02-22
445
+
446
+ - Support socks module v2 in addition to v1 [e228bcb2]
447
+ - Fixed invalid promise return value when using createTestAccount [5524e627]
448
+ - Allow using local addresses [8f6fa35f]
449
+
450
+ ## 4.5.0 2018-02-21
451
+
452
+ - Added new message transport option `normalizeHeaderKey(key)=>normalizedKey` for custom header formatting
453
+
454
+ ## 4.4.2 2018-01-20
455
+
456
+ - Added sponsors section to README
457
+ - enclose encodeURIComponent in try..catch to handle invalid urls
458
+
459
+ ## 4.4.1 2017-12-08
460
+
461
+ - Better handling of unexpectedly dropping connections
462
+
463
+ ## 4.4.0 2017-11-10
464
+
465
+ - Changed default behavior for attachment option contentTransferEncoding. If it is unset then base64 encoding is used for the attachment. If it is set to false then previous default applies (base64 for most, 7bit for text)
466
+
467
+ ## 4.3.1 2017-10-25
468
+
469
+ - Fixed a confict with Electron.js where timers do not have unref method
470
+
471
+ ## 4.3.0 2017-10-23
472
+
473
+ - Added new mail object method `mail.normalize(cb)` that should make creating HTTP API based transports much easier
474
+
475
+ ## 4.2.0 2017-10-13
476
+
477
+ - Expose streamed messages size and timers in info response
478
+
479
+ ## v4.1.3 2017-10-06
480
+
481
+ - Allow generating preview links without calling createTestAccount first
482
+
483
+ ## v4.1.2 2017-10-03
484
+
485
+ - No actual changes. Needed to push updated README to npmjs
486
+
487
+ ## v4.1.1 2017-09-25
488
+
489
+ - Fixed JSONTransport attachment handling
490
+
491
+ ## v4.1.0 2017-08-28
492
+
493
+ - Added new methods `createTestAccount` and `getTestMessageUrl` to use autogenerated email accounts from https://Ethereal.email
494
+
495
+ ## v4.0.1 2017-04-13
496
+
497
+ - Fixed issue with LMTP and STARTTLS
498
+
499
+ ## v4.0.0 2017-04-06
500
+
501
+ - License changed from EUPLv1.1 to MIT
502
+
503
+ ## v3.1.8 2017-03-21
504
+
505
+ - Fixed invalid List-\* header generation
506
+
507
+ ## v3.1.7 2017-03-14
508
+
509
+ - Emit an error if STARTTLS ends with connection being closed
510
+
511
+ ## v3.1.6 2017-03-14
512
+
513
+ - Expose last server response for smtpConnection
514
+
515
+ ## v3.1.5 2017-03-08
516
+
517
+ - Fixed SES transport, added missing `response` value
518
+
519
+ ## v3.1.4 2017-02-26
520
+
521
+ - Fixed DKIM calculation for empty body
522
+ - Ensure linebreak after message content. This fixes DKIM signatures for non-multipart messages where input did not end with a newline
523
+
524
+ ## v3.1.3 2017-02-17
525
+
526
+ - Fixed missing `transport.verify()` methods for SES transport
527
+
528
+ ## v3.1.2 2017-02-17
529
+
530
+ - Added missing error handlers for Sendmail, SES and Stream transports. If a messages contained an invalid URL as attachment then these transports threw an uncatched error
531
+
532
+ ## v3.1.1 2017-02-13
533
+
534
+ - Fixed missing `transport.on('idle')` and `transport.isIdle()` methods for SES transports
535
+
536
+ ## v3.1.0 2017-02-13
537
+
538
+ - Added built-in transport for AWS SES. [Docs](http://localhost:1313/transports/ses/)
539
+ - Updated stream transport to allow building JSON strings. [Docs](http://localhost:1313/transports/stream/#json-transport)
540
+ - Added new method _mail.resolveAll_ that fetches all attachments and such to be able to more easily build API-based transports
541
+
542
+ ## v3.0.2 2017-02-04
543
+
544
+ - Fixed a bug with OAuth2 login where error callback was fired twice if getToken was not available.
545
+
546
+ ## v3.0.1 2017-02-03
547
+
548
+ - Fixed a bug where Nodemailer threw an exception if `disableFileAccess` option was used
549
+ - Added FLOSS [exception declaration](FLOSS_EXCEPTIONS.md)
550
+
551
+ ## v3.0.0 2017-01-31
552
+
553
+ - Initial version of Nodemailer 3
554
+
555
+ This update brings a lot of breaking changes:
556
+
557
+ - License changed from MIT to **EUPL-1.1**. This was possible as the new version of Nodemailer is a major rewrite. The features I don't have ownership for, were removed or reimplemented. If there's still some snippets in the code that have vague ownership then notify <mailto:andris@kreata.ee> about the conflicting code and I'll fix it.
558
+ - Requires **Node.js v6+**
559
+ - All **templating is gone**. It was too confusing to use and to be really universal a huge list of different renderers would be required. Nodemailer is about email, not about parsing different template syntaxes
560
+ - **No NTLM authentication**. It was too difficult to re-implement. If you still need it then it would be possible to introduce a pluggable SASL interface where you could load the NTLM module in your own code and pass it to Nodemailer. Currently this is not possible.
561
+ - **OAuth2 authentication** is built in and has a different [configuration](https://nodemailer.com/smtp/oauth2/). You can use both user (3LO) and service (2LO) accounts to generate access tokens from Nodemailer. Additionally there's a new feature to authenticate differently for every message – useful if your application sends on behalf of different users instead of a single sender.
562
+ - **Improved Calendaring**. Provide an ical file to Nodemailer to send out [calendar events](https://nodemailer.com/message/calendar-events/).
563
+
564
+ And also some non-breaking changes:
565
+
566
+ - All **dependencies were dropped**. There is exactly 0 dependencies needed to use Nodemailer. This brings the installation time of Nodemailer from NPM down to less than 2 seconds
567
+ - **Delivery status notifications** added to Nodemailer
568
+ - Improved and built-in **DKIM** signing of messages. Previously you needed an external module for this and it did quite a lousy job with larger messages
569
+ - **Stream transport** to return a RFC822 formatted message as a stream. Useful if you want to use Nodemailer as a preprocessor and not for actual delivery.
570
+ - **Sendmail** transport built-in, no need for external transport plugin
571
+
572
+ See [Nodemailer.com](https://nodemailer.com/) for full documentation
573
+
574
+ ## 2.7.0 2016-12-08
575
+
576
+ - Bumped mailcomposer that generates encoded-words differently which might break some tests
577
+
578
+ ## 2.6.0 2016-09-05
579
+
580
+ - Added new options disableFileAccess and disableUrlAccess
581
+ - Fixed envelope handling where cc/bcc fields were ignored in the envelope object
582
+
583
+ ## 2.4.2 2016-05-25
584
+
585
+ - Removed shrinkwrap file. Seemed to cause more trouble than help
586
+
587
+ ## 2.4.1 2016-05-12
588
+
589
+ - Fixed outdated shrinkwrap file
590
+
591
+ ## 2.4.0 2016-05-11
592
+
593
+ - Bumped mailcomposer module to allow using `false` as attachment filename (suppresses filename usage)
594
+ - Added NTLM authentication support
595
+
596
+ ## 2.3.2 2016-04-11
597
+
598
+ - Bumped smtp transport modules to get newest smtp-connection that fixes SMTPUTF8 support for internationalized email addresses
599
+
600
+ ## 2.3.1 2016-04-08
601
+
602
+ - Bumped mailcomposer to have better support for message/822 attachments
603
+
604
+ ## 2.3.0 2016-03-03
605
+
606
+ - Fixed a bug with attachment filename that contains mixed unicode and dashes
607
+ - Added built-in support for proxies by providing a new SMTP option `proxy` that takes a proxy configuration url as its value
608
+ - Added option `transport` to dynamically load transport plugins
609
+ - Do not require globally installed grunt-cli
610
+
611
+ ## 2.2.1 2016-02-20
612
+
613
+ - Fixed a bug in SMTP requireTLS option that was broken
614
+
615
+ ## 2.2.0 2016-02-18
616
+
617
+ - Removed the need to use `clone` dependency
618
+ - Added new method `verify` to check SMTP configuration
619
+ - Direct transport uses STARTTLS by default, fallbacks to plaintext if STARTTLS fails
620
+ - Added new message option `list` for setting List-\* headers
621
+ - Add simple proxy support with `getSocket` method
622
+ - Added new message option `textEncoding`. If `textEncoding` is not set then detect best encoding automatically
623
+ - Added new message option `icalEvent` to embed iCalendar events. Example [here](examples/ical-event.js)
624
+ - Added new attachment option `raw` to use prepared MIME contents instead of generating a new one. This might be useful when you want to handcraft some parts of the message yourself, for example if you want to inject a PGP encrypted message as the contents of a MIME node
625
+ - Added new message option `raw` to use an existing MIME message instead of generating a new one
626
+
627
+ ## 2.1.0 2016-02-01
628
+
629
+ Republishing 2.1.0-rc.1 as stable. To recap, here's the notable changes between v2.0 and v2.1:
630
+
631
+ - Implemented templating support. You can either use a simple built-in renderer or some external advanced renderer, eg. [node-email-templates](https://github.com/niftylettuce/node-email-templates). Templating [docs](http://nodemailer.com/2-0-0-beta/templating/).
632
+ - Updated smtp-pool to emit 'idle' events in order to handle message queue more effectively
633
+ - Updated custom header handling, works everywhere the same now, no differences between adding custom headers to the message or to an attachment
634
+
635
+ ## 2.1.0-rc.1 2016-01-25
636
+
637
+ Sneaked in some new features even though it is already rc
638
+
639
+ - If a SMTP pool is closed while there are still messages in a queue, the message callbacks are invoked with an error
640
+ - In case of SMTP pool the transporter emits 'idle' when there is a free connection slot available
641
+ - Added method `isIdle()` that checks if a pool has still some free connection slots available
642
+
643
+ ## 2.1.0-rc.0 2016-01-20
644
+
645
+ - Bumped dependency versions
646
+
647
+ ## 2.1.0-beta.3 2016-01-20
648
+
649
+ - Added support for node-email-templates templating in addition to the built-in renderer
650
+
651
+ ## 2.1.0-beta.2 2016-01-20
652
+
653
+ - Implemented simple templating feature
654
+
655
+ ## 2.1.0-beta.1 2016-01-20
656
+
657
+ - Allow using prepared header values that are not folded or encoded by Nodemailer
658
+
659
+ ## 2.1.0-beta.0 2016-01-20
660
+
661
+ - Use the same header custom structure for message root, attachments and alternatives
662
+ - Ensure that Message-Id exists when accessing message
663
+ - Allow using array values for custom headers (inserts every value in its own row)
664
+
665
+ ## 2.0.0 2016-01-11
666
+
667
+ - Released rc.2 as stable
668
+
669
+ ## 2.0.0-rc.2 2016-01-04
670
+
671
+ - Locked dependencies
672
+
673
+ ## 2.0.0-beta.2 2016-01-04
674
+
675
+ - Updated documentation to reflect changes with SMTP handling
676
+ - Use beta versions for smtp/pool/direct transports
677
+ - Updated logging
678
+
679
+ ## 2.0.0-beta.1 2016-01-03
680
+
681
+ - Use bunyan compatible logger instead of the emit('log') style
682
+ - Outsourced some reusable methods to nodemailer-shared
683
+ - Support setting direct/smtp/pool with the default configuration
684
+
685
+ ## 2.0.0-beta.0 2015-12-31
686
+
687
+ - Stream errors are not silently swallowed
688
+ - Do not use format=flowed
689
+ - Use nodemailer-fetch to fetch URL streams
690
+ - jshint replaced by eslint
691
+
692
+ ## v1.11.0 2015-12-28
693
+
694
+ Allow connection url based SMTP configurations
695
+
696
+ ## v1.10.0 2015-11-13
697
+
698
+ Added `defaults` argument for `createTransport` to predefine commonn values (eg. `from` address)
699
+
700
+ ## v1.9.0 2015-11-09
701
+
702
+ Returns a Promise for `sendMail` if callback is not defined
703
+
704
+ ## v1.8.0 2015-10-08
705
+
706
+ Added priority option (high, normal, low) for setting Importance header
707
+
708
+ ## v1.7.0 2015-10-06
709
+
710
+ Replaced hyperquest with needle. Fixes issues with compressed data and redirects
711
+
712
+ ## v1.6.0 2015-10-05
713
+
714
+ Maintenance release. Bumped dependencies to get support for unicode filenames for QQ webmail and to support emoji in filenames
715
+
716
+ ## v1.5.0 2015-09-24
717
+
718
+ Use mailcomposer instead of built in solution to generate message sources. Bumped libmime gives better quoted-printable handling.
719
+
720
+ ## v1.4.0 2015-06-27
721
+
722
+ Added new message option `watchHtml` to specify Apple Watch specific HTML part of the message. See [this post](https://litmus.com/blog/how-to-send-hidden-version-email-apple-watch) for details
723
+
724
+ ## v1.3.4 2015-04-25
725
+
726
+ Maintenance release, bumped buildmail version to get fixed format=flowed handling
727
+
728
+ ## v1.3.3 2015-04-25
729
+
730
+ Maintenance release, bumped dependencies
731
+
732
+ ## v1.3.2 2015-03-09
733
+
734
+ Maintenance release, upgraded dependencies. Replaced simplesmtp based tests with smtp-server based ones.
735
+
736
+ ## v1.3.0 2014-09-12
737
+
738
+ Maintenance release, upgrades buildmail and libmime. Allows using functions as transform plugins and fixes issue with unicode filenames in Gmail.
739
+
740
+ ## v1.2.2 2014-09-05
741
+
742
+ Proper handling of data uris as attachments. Attachment `path` property can also be defined as a data uri, not just regular url or file path.
743
+
744
+ ## v1.2.1 2014-08-21
745
+
746
+ Bumped libmime and mailbuild versions to properly handle filenames with spaces (short ascii only filenames with spaces were left unquoted).
747
+
748
+ ## v1.2.0 2014-08-18
749
+
750
+ Allow using encoded strings as attachments. Added new property `encoding` which defines the encoding used for a `content` string. If encoding is set, the content value is converted to a Buffer value using the defined encoding before usage. Useful for including binary attachemnts in JSON formatted email objects.
751
+
752
+ ## v1.1.2 2014-08-18
753
+
754
+ Return deprecatin error for v0.x style configuration
755
+
756
+ ## v1.1.1 2014-07-30
757
+
758
+ Bumped nodemailer-direct-transport dependency. Updated version includes a bugfix for Stream nodes handling. Important only if use direct-transport with Streams (not file paths or urls) as attachment content.
759
+
760
+ ## v1.1.0 2014-07-29
761
+
762
+ Added new method `resolveContent()` to get the html/text/attachment content as a String or Buffer.
763
+
764
+ ## v1.0.4 2014-07-23
765
+
766
+ Bugfix release. HTML node was instered twice if the message consisted of a HTML content (but no text content) + at least one attachment with CID + at least one attachment without CID. In this case the HTML node was inserted both to the root level multipart/mixed section and to the multipart/related sub section
767
+
768
+ ## v1.0.3 2014-07-16
769
+
770
+ Fixed a bug where Nodemailer crashed if the message content type was multipart/related
771
+
772
+ ## v1.0.2 2014-07-16
773
+
774
+ Upgraded nodemailer-smtp-transport to 0.1.11\. The docs state that for SSL you should use 'secure' option but the underlying smtp-connection module used 'secureConnection' for this purpose. Fixed smpt-connection to match the docs.
775
+
776
+ ## v1.0.1 2014-07-15
777
+
778
+ Implemented missing #close method that is passed to the underlying transport object. Required by the smtp pool.
779
+
780
+ ## v1.0.0 2014-07-15
781
+
782
+ Total rewrite. See migration guide here: <http://www.andrisreinman.com/nodemailer-v1-0/#migrationguide>
783
+
784
+ ## v0.7.1 2014-07-09
785
+
786
+ - Upgraded aws-sdk to 2.0.5
787
+
788
+ ## v0.7.0 2014-06-17
789
+
790
+ - Bumped version to v0.7.0
791
+ - Fix AWS-SES usage [5b6bc144]
792
+ - Replace current SES with new SES using AWS-SDK (Elanorr) [c79d797a]
793
+ - Updated README.md about Node Email Templates (niftylettuce) [e52bef81]
794
+
795
+ ## v0.6.5 2014-05-15
796
+
797
+ - Bumped version to v0.6.5
798
+ - Use tildes instead of carets for dependency listing [5296ce41]
799
+ - Allow clients to set a custom identityString (venables) [5373287d]
800
+ - bugfix (adding "-i" to sendmail command line for each new mail) by copying this.args (vrodic) [05a8a9a3]
801
+ - update copyright (gdi2290) [3a6cba3a]
802
+
803
+ ## v0.6.4 2014-05-13
804
+
805
+ - Bumped version to v0.6.4
806
+ - added npmignore, bumped dependencies [21bddcd9]
807
+ - Add AOL to well-known services (msouce) [da7dd3b7]
808
+
809
+ ## v0.6.3 2014-04-16
810
+
811
+ - Bumped version to v0.6.3
812
+ - Upgraded simplesmtp dependency [dd367f59]
813
+
814
+ ## v0.6.2 2014-04-09
815
+
816
+ - Bumped version to v0.6.2
817
+ - Added error option to Stub transport [c423acad]
818
+ - Use SVG npm badge (t3chnoboy) [677117b7]
819
+ - add SendCloud to well known services (haio) [43c358e0]
820
+ - High-res build-passing and NPM module badges (sahat) [9fdc37cd]
821
+
822
+ ## v0.6.1 2014-01-26
823
+
824
+ - Bumped version to v0.6.1
825
+ - Do not throw on multiple errors from sendmail command [c6e2cd12]
826
+ - Do not require callback for pickup, fixes #238 [93eb3214]
827
+ - Added AWSSecurityToken information to README, fixes #235 [58e921d1]
828
+ - Added Nodemailer logo [06b7d1a8]
829
+
830
+ ## v0.6.0 2013-12-30
831
+
832
+ - Bumped version to v0.6.0
833
+ - Allow defining custom transport methods [ec5b48ce]
834
+ - Return messageId with responseObject for all built in transport methods [74445cec]
835
+ - Bumped dependency versions for mailcomposer and readable-stream [9a034c34]
836
+ - Changed pickup argument name to 'directory' [01c3ea53]
837
+ - Added support for IIS pickup directory with PICKUP transport (philipproplesch) [36940b59..360a2878]
838
+ - Applied common styles [9e93a409]
839
+ - Updated readme [c78075e7]
840
+
841
+ ## v0.5.15 2013-12-13
842
+
843
+ - bumped version to v0.5.15
844
+ - Updated README, added global options info for setting uo transports [554bb0e5]
845
+ - Resolve public hostname, if resolveHostname property for a transport object is set to `true` [9023a6e1..4c66b819]
846
+
847
+ ## v0.5.14 2013-12-05
848
+
849
+ - bumped version to v0.5.14
850
+ - Expose status for direct messages [f0312df6]
851
+ - Allow to skip the X-Mailer header if xMailer value is set to 'false' [f2c20a68]
852
+
853
+ ## v0.5.13 2013-12-03
854
+
855
+ - bumped version to v0.5.13
856
+ - Use the name property from the transport object to use for the domain part of message-id values (1598eee9)
857
+
858
+ ## v0.5.12 2013-12-02
859
+
860
+ - bumped version to v0.5.12
861
+ - Expose transport method and transport module version if available [a495106e]
862
+ - Added 'he' module instead of using custom html entity decoding [c197d102]
863
+ - Added xMailer property for transport configuration object to override X-Mailer value [e8733a61]
864
+ - Updated README, added description for 'mail' method [e1f5f3a6]
865
+
866
+ ## v0.5.11 2013-11-28
867
+
868
+ - bumped version to v0.5.11
869
+ - Updated mailcomposer version. Replaces ent with he [6a45b790e]
870
+
871
+ ## v0.5.10 2013-11-26
872
+
873
+ - bumped version to v0.5.10
874
+ - added shorthand function mail() for direct transport type [88129bd7]
875
+ - minor tweaks and typo fixes [f797409e..ceac0ca4]
876
+
877
+ ## v0.5.9 2013-11-25
878
+
879
+ - bumped version to v0.5.9
880
+ - Update for 'direct' handling [77b84e2f]
881
+ - do not require callback to be provided for 'direct' type [ec51c79f]
882
+
883
+ ## v0.5.8 2013-11-22
884
+
885
+ - bumped version to v0.5.8
886
+ - Added support for 'direct' transport [826f226d..0dbbcbbc]
887
+
888
+ ## v0.5.7 2013-11-18
889
+
890
+ - bumped version to v0.5.7
891
+ - Replace \r\n by \n in Sendmail transport (rolftimmermans) [fed2089e..616ec90c] A lot of sendmail implementations choke on \r\n newlines and require \n This commit addresses this by transforming all \r\n sequences passed to the sendmail command with \n
892
+
893
+ ## v0.5.6 2013-11-15
894
+
895
+ - bumped version to v0.5.6
896
+ - Upgraded mailcomposer dependency to 0.2.4 [e5ff9c40]
897
+ - Removed noCR option [e810d1b8]
898
+ - Update wellknown.js, added FastMail (k-j-kleist) [cf930f6d]
899
+
900
+ ## v0.5.5 2013-10-30
901
+
902
+ - bumped version to v0.5.5
903
+ - Updated mailcomposer dependnecy version to 0.2.3
904
+ - Remove legacy code - node v0.4 is not supported anymore anyway
905
+ - Use hostname (autodetected or from the options.name property) for Message-Id instead of "Nodemailer" (helps a bit when messages are identified as spam)
906
+ - Added maxMessages info to README
907
+
908
+ ## v0.5.4 2013-10-29
909
+
910
+ - bumped version to v0.5.4
911
+ - added "use strict" statements
912
+ - Added DSN info to README
913
+ - add support for QQ enterprise email (coderhaoxin)
914
+ - Add a Bitdeli Badge to README
915
+ - DSN options Passthrought into simplesmtp. (irvinzz)
916
+
917
+ ## v0.5.3 2013-10-03
918
+
919
+ - bumped version v0.5.3
920
+ - Using a stub transport to prevent sendmail from being called during a test. (jsdevel)
921
+ - closes #78: sendmail transport does not work correctly on Unix machines. (jsdevel)
922
+ - Updated PaaS Support list to include Modulus. (fiveisprime)
923
+ - Translate self closing break tags to newline (kosmasgiannis)
924
+ - fix typos (aeosynth)
925
+
926
+ ## v0.5.2 2013-07-25
927
+
928
+ - bumped version v0.5.2
929
+ - Merge pull request #177 from MrSwitch/master Fixing Amazon SES, fatal error caused by bad connection