nodemailer 7.0.3 → 7.0.5
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.
- package/CHANGELOG.md +16 -0
- package/lib/mailer/index.js +5 -0
- package/lib/smtp-connection/index.js +1 -1
- package/lib/smtp-pool/index.js +4 -0
- package/lib/well-known/services.json +232 -44
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [7.0.5](https://github.com/nodemailer/nodemailer/compare/v7.0.4...v7.0.5) (2025-07-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* updated well known delivery service list ([fa2724b](https://github.com/nodemailer/nodemailer/commit/fa2724b337eb8d8fdcdd788fe903980b061316b8))
|
|
9
|
+
|
|
10
|
+
## [7.0.4](https://github.com/nodemailer/nodemailer/compare/v7.0.3...v7.0.4) (2025-06-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **pools:** Emit 'clear' once transporter is idle and all connections are closed ([839e286](https://github.com/nodemailer/nodemailer/commit/839e28634c9a93ae4321f399a8c893bf487a09fa))
|
|
16
|
+
* **smtp-connection:** jsdoc public annotation for socket ([#1741](https://github.com/nodemailer/nodemailer/issues/1741)) ([c45c84f](https://github.com/nodemailer/nodemailer/commit/c45c84fe9b8e2ec5e0615ab02d4197473911ab3e))
|
|
17
|
+
* **well-known-services:** Added AliyunQiye ([bb9e6da](https://github.com/nodemailer/nodemailer/commit/bb9e6daffb632d7d8f969359859f88a138de3a48))
|
|
18
|
+
|
|
3
19
|
## [7.0.3](https://github.com/nodemailer/nodemailer/compare/v7.0.2...v7.0.3) (2025-05-08)
|
|
4
20
|
|
|
5
21
|
|
package/lib/mailer/index.js
CHANGED
|
@@ -87,6 +87,11 @@ class Mail extends EventEmitter {
|
|
|
87
87
|
this.transporter.on('idle', (...args) => {
|
|
88
88
|
this.emit('idle', ...args);
|
|
89
89
|
});
|
|
90
|
+
|
|
91
|
+
// indicates if the sender has became idle and all connections are terminated
|
|
92
|
+
this.transporter.on('clear', (...args) => {
|
|
93
|
+
this.emit('clear', ...args);
|
|
94
|
+
});
|
|
90
95
|
}
|
|
91
96
|
|
|
92
97
|
/**
|
package/lib/smtp-pool/index.js
CHANGED
|
@@ -1,63 +1,93 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1und1": {
|
|
3
|
+
"description": "1&1 Mail (German hosting provider)",
|
|
3
4
|
"host": "smtp.1und1.de",
|
|
4
5
|
"port": 465,
|
|
5
6
|
"secure": true,
|
|
6
7
|
"authMethod": "LOGIN"
|
|
7
8
|
},
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
"126": {
|
|
11
|
+
"description": "126 Mail (NetEase)",
|
|
12
|
+
"host": "smtp.126.com",
|
|
13
|
+
"port": 465,
|
|
14
|
+
"secure": true
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
"163": {
|
|
18
|
+
"description": "163 Mail (NetEase)",
|
|
19
|
+
"host": "smtp.163.com",
|
|
20
|
+
"port": 465,
|
|
21
|
+
"secure": true
|
|
22
|
+
},
|
|
23
|
+
|
|
9
24
|
"Aliyun": {
|
|
25
|
+
"description": "Alibaba Cloud Mail",
|
|
10
26
|
"domains": ["aliyun.com"],
|
|
11
27
|
"host": "smtp.aliyun.com",
|
|
12
28
|
"port": 465,
|
|
13
29
|
"secure": true
|
|
14
30
|
},
|
|
15
|
-
|
|
31
|
+
|
|
32
|
+
"AliyunQiye": {
|
|
33
|
+
"description": "Alibaba Cloud Enterprise Mail",
|
|
34
|
+
"host": "smtp.qiye.aliyun.com",
|
|
35
|
+
"port": 465,
|
|
36
|
+
"secure": true
|
|
37
|
+
},
|
|
38
|
+
|
|
16
39
|
"AOL": {
|
|
40
|
+
"description": "AOL Mail",
|
|
17
41
|
"domains": ["aol.com"],
|
|
18
42
|
"host": "smtp.aol.com",
|
|
19
43
|
"port": 587
|
|
20
44
|
},
|
|
21
45
|
|
|
22
46
|
"Bluewin": {
|
|
47
|
+
"description": "Bluewin (Swiss email provider)",
|
|
23
48
|
"host": "smtpauths.bluewin.ch",
|
|
24
49
|
"domains": ["bluewin.ch"],
|
|
25
50
|
"port": 465
|
|
26
51
|
},
|
|
27
52
|
|
|
28
53
|
"DebugMail": {
|
|
54
|
+
"description": "DebugMail (email testing service)",
|
|
29
55
|
"host": "debugmail.io",
|
|
30
56
|
"port": 25
|
|
31
57
|
},
|
|
32
58
|
|
|
33
59
|
"DynectEmail": {
|
|
60
|
+
"description": "Dyn Email Delivery",
|
|
34
61
|
"aliases": ["Dynect"],
|
|
35
62
|
"host": "smtp.dynect.net",
|
|
36
63
|
"port": 25
|
|
37
64
|
},
|
|
38
65
|
|
|
66
|
+
"ElasticEmail": {
|
|
67
|
+
"description": "Elastic Email",
|
|
68
|
+
"aliases": ["Elastic Email"],
|
|
69
|
+
"host": "smtp.elasticemail.com",
|
|
70
|
+
"port": 465,
|
|
71
|
+
"secure": true
|
|
72
|
+
},
|
|
73
|
+
|
|
39
74
|
"Ethereal": {
|
|
75
|
+
"description": "Ethereal Email (email testing service)",
|
|
40
76
|
"aliases": ["ethereal.email"],
|
|
41
77
|
"host": "smtp.ethereal.email",
|
|
42
78
|
"port": 587
|
|
43
79
|
},
|
|
44
80
|
|
|
45
81
|
"FastMail": {
|
|
82
|
+
"description": "FastMail",
|
|
46
83
|
"domains": ["fastmail.fm"],
|
|
47
84
|
"host": "smtp.fastmail.com",
|
|
48
85
|
"port": 465,
|
|
49
86
|
"secure": true
|
|
50
87
|
},
|
|
51
88
|
|
|
52
|
-
"Forward Email": {
|
|
53
|
-
"aliases": ["FE", "ForwardEmail"],
|
|
54
|
-
"domains": ["forwardemail.net"],
|
|
55
|
-
"host": "smtp.forwardemail.net",
|
|
56
|
-
"port": 465,
|
|
57
|
-
"secure": true
|
|
58
|
-
},
|
|
59
|
-
|
|
60
89
|
"Feishu Mail": {
|
|
90
|
+
"description": "Feishu Mail (Lark)",
|
|
61
91
|
"aliases": ["Feishu", "FeishuMail"],
|
|
62
92
|
"domains": ["www.feishu.cn"],
|
|
63
93
|
"host": "smtp.feishu.cn",
|
|
@@ -65,13 +95,24 @@
|
|
|
65
95
|
"secure": true
|
|
66
96
|
},
|
|
67
97
|
|
|
98
|
+
"Forward Email": {
|
|
99
|
+
"description": "Forward Email (email forwarding service)",
|
|
100
|
+
"aliases": ["FE", "ForwardEmail"],
|
|
101
|
+
"domains": ["forwardemail.net"],
|
|
102
|
+
"host": "smtp.forwardemail.net",
|
|
103
|
+
"port": 465,
|
|
104
|
+
"secure": true
|
|
105
|
+
},
|
|
106
|
+
|
|
68
107
|
"GandiMail": {
|
|
108
|
+
"description": "Gandi Mail",
|
|
69
109
|
"aliases": ["Gandi", "Gandi Mail"],
|
|
70
110
|
"host": "mail.gandi.net",
|
|
71
111
|
"port": 587
|
|
72
112
|
},
|
|
73
113
|
|
|
74
114
|
"Gmail": {
|
|
115
|
+
"description": "Gmail",
|
|
75
116
|
"aliases": ["Google Mail"],
|
|
76
117
|
"domains": ["gmail.com", "googlemail.com"],
|
|
77
118
|
"host": "smtp.gmail.com",
|
|
@@ -79,26 +120,38 @@
|
|
|
79
120
|
"secure": true
|
|
80
121
|
},
|
|
81
122
|
|
|
123
|
+
"GMX": {
|
|
124
|
+
"description": "GMX Mail",
|
|
125
|
+
"domains": ["gmx.com", "gmx.net", "gmx.de"],
|
|
126
|
+
"host": "mail.gmx.com",
|
|
127
|
+
"port": 587
|
|
128
|
+
},
|
|
129
|
+
|
|
82
130
|
"Godaddy": {
|
|
131
|
+
"description": "GoDaddy Email (US)",
|
|
83
132
|
"host": "smtpout.secureserver.net",
|
|
84
133
|
"port": 25
|
|
85
134
|
},
|
|
86
135
|
|
|
87
136
|
"GodaddyAsia": {
|
|
137
|
+
"description": "GoDaddy Email (Asia)",
|
|
88
138
|
"host": "smtp.asia.secureserver.net",
|
|
89
139
|
"port": 25
|
|
90
140
|
},
|
|
91
141
|
|
|
92
142
|
"GodaddyEurope": {
|
|
143
|
+
"description": "GoDaddy Email (Europe)",
|
|
93
144
|
"host": "smtp.europe.secureserver.net",
|
|
94
145
|
"port": 25
|
|
95
146
|
},
|
|
96
147
|
|
|
97
148
|
"hot.ee": {
|
|
149
|
+
"description": "Hot.ee (Estonian email provider)",
|
|
98
150
|
"host": "mail.hot.ee"
|
|
99
151
|
},
|
|
100
152
|
|
|
101
153
|
"Hotmail": {
|
|
154
|
+
"description": "Outlook.com / Hotmail",
|
|
102
155
|
"aliases": ["Outlook", "Outlook.com", "Hotmail.com"],
|
|
103
156
|
"domains": ["hotmail.com", "outlook.com"],
|
|
104
157
|
"host": "smtp-mail.outlook.com",
|
|
@@ -106,6 +159,7 @@
|
|
|
106
159
|
},
|
|
107
160
|
|
|
108
161
|
"iCloud": {
|
|
162
|
+
"description": "iCloud Mail",
|
|
109
163
|
"aliases": ["Me", "Mac"],
|
|
110
164
|
"domains": ["me.com", "mac.com"],
|
|
111
165
|
"host": "smtp.mail.me.com",
|
|
@@ -113,72 +167,107 @@
|
|
|
113
167
|
},
|
|
114
168
|
|
|
115
169
|
"Infomaniak": {
|
|
170
|
+
"description": "Infomaniak Mail (Swiss hosting provider)",
|
|
116
171
|
"host": "mail.infomaniak.com",
|
|
117
172
|
"domains": ["ik.me", "ikmail.com", "etik.com"],
|
|
118
173
|
"port": 587
|
|
119
174
|
},
|
|
175
|
+
|
|
120
176
|
"Loopia": {
|
|
177
|
+
"description": "Loopia (Swedish hosting provider)",
|
|
121
178
|
"host": "mailcluster.loopia.se",
|
|
122
179
|
"port": 465
|
|
123
180
|
},
|
|
181
|
+
|
|
182
|
+
"Loops": {
|
|
183
|
+
"description": "Loops",
|
|
184
|
+
"host": "smtp.loops.so",
|
|
185
|
+
"port": 587
|
|
186
|
+
},
|
|
187
|
+
|
|
124
188
|
"mail.ee": {
|
|
189
|
+
"description": "Mail.ee (Estonian email provider)",
|
|
125
190
|
"host": "smtp.mail.ee"
|
|
126
191
|
},
|
|
127
192
|
|
|
128
193
|
"Mail.ru": {
|
|
194
|
+
"description": "Mail.ru",
|
|
129
195
|
"host": "smtp.mail.ru",
|
|
130
196
|
"port": 465,
|
|
131
197
|
"secure": true
|
|
132
198
|
},
|
|
133
199
|
|
|
134
200
|
"Mailcatch.app": {
|
|
201
|
+
"description": "Mailcatch (email testing service)",
|
|
135
202
|
"host": "sandbox-smtp.mailcatch.app",
|
|
136
203
|
"port": 2525
|
|
137
204
|
},
|
|
138
205
|
|
|
139
206
|
"Maildev": {
|
|
207
|
+
"description": "MailDev (local email testing)",
|
|
140
208
|
"port": 1025,
|
|
141
209
|
"ignoreTLS": true
|
|
142
210
|
},
|
|
143
211
|
|
|
212
|
+
"MailerSend": {
|
|
213
|
+
"description": "MailerSend",
|
|
214
|
+
"host": "smtp.mailersend.net",
|
|
215
|
+
"port": 587
|
|
216
|
+
},
|
|
217
|
+
|
|
144
218
|
"Mailgun": {
|
|
219
|
+
"description": "Mailgun",
|
|
145
220
|
"host": "smtp.mailgun.org",
|
|
146
221
|
"port": 465,
|
|
147
222
|
"secure": true
|
|
148
223
|
},
|
|
149
224
|
|
|
150
225
|
"Mailjet": {
|
|
226
|
+
"description": "Mailjet",
|
|
151
227
|
"host": "in.mailjet.com",
|
|
152
228
|
"port": 587
|
|
153
229
|
},
|
|
154
230
|
|
|
155
231
|
"Mailosaur": {
|
|
232
|
+
"description": "Mailosaur (email testing service)",
|
|
156
233
|
"host": "mailosaur.io",
|
|
157
234
|
"port": 25
|
|
158
235
|
},
|
|
159
236
|
|
|
160
237
|
"Mailtrap": {
|
|
238
|
+
"description": "Mailtrap",
|
|
161
239
|
"host": "live.smtp.mailtrap.io",
|
|
162
240
|
"port": 587
|
|
163
241
|
},
|
|
164
242
|
|
|
165
243
|
"Mandrill": {
|
|
244
|
+
"description": "Mandrill (by Mailchimp)",
|
|
166
245
|
"host": "smtp.mandrillapp.com",
|
|
167
246
|
"port": 587
|
|
168
247
|
},
|
|
169
248
|
|
|
170
249
|
"Naver": {
|
|
250
|
+
"description": "Naver Mail (Korean email provider)",
|
|
171
251
|
"host": "smtp.naver.com",
|
|
172
252
|
"port": 587
|
|
173
253
|
},
|
|
174
254
|
|
|
255
|
+
"OhMySMTP": {
|
|
256
|
+
"description": "OhMySMTP (email delivery service)",
|
|
257
|
+
"host": "smtp.ohmysmtp.com",
|
|
258
|
+
"port": 587,
|
|
259
|
+
"secure": false
|
|
260
|
+
},
|
|
261
|
+
|
|
175
262
|
"One": {
|
|
263
|
+
"description": "One.com Email",
|
|
176
264
|
"host": "send.one.com",
|
|
177
265
|
"port": 465,
|
|
178
266
|
"secure": true
|
|
179
267
|
},
|
|
180
268
|
|
|
181
269
|
"OpenMailBox": {
|
|
270
|
+
"description": "OpenMailBox",
|
|
182
271
|
"aliases": ["OMB", "openmailbox.org"],
|
|
183
272
|
"host": "smtp.openmailbox.org",
|
|
184
273
|
"port": 465,
|
|
@@ -186,24 +275,21 @@
|
|
|
186
275
|
},
|
|
187
276
|
|
|
188
277
|
"Outlook365": {
|
|
278
|
+
"description": "Microsoft 365 / Office 365",
|
|
189
279
|
"host": "smtp.office365.com",
|
|
190
280
|
"port": 587,
|
|
191
281
|
"secure": false
|
|
192
282
|
},
|
|
193
283
|
|
|
194
|
-
"OhMySMTP": {
|
|
195
|
-
"host": "smtp.ohmysmtp.com",
|
|
196
|
-
"port": 587,
|
|
197
|
-
"secure": false
|
|
198
|
-
},
|
|
199
|
-
|
|
200
284
|
"Postmark": {
|
|
285
|
+
"description": "Postmark",
|
|
201
286
|
"aliases": ["PostmarkApp"],
|
|
202
287
|
"host": "smtp.postmarkapp.com",
|
|
203
288
|
"port": 2525
|
|
204
289
|
},
|
|
205
290
|
|
|
206
291
|
"Proton": {
|
|
292
|
+
"description": "Proton Mail",
|
|
207
293
|
"aliases": ["ProtonMail", "Proton.me", "Protonmail.com", "Protonmail.ch"],
|
|
208
294
|
"domains": ["proton.me", "protonmail.com", "pm.me", "protonmail.ch"],
|
|
209
295
|
"host": "smtp.protonmail.ch",
|
|
@@ -212,12 +298,14 @@
|
|
|
212
298
|
},
|
|
213
299
|
|
|
214
300
|
"qiye.aliyun": {
|
|
301
|
+
"description": "Alibaba Mail Enterprise Edition",
|
|
215
302
|
"host": "smtp.mxhichina.com",
|
|
216
303
|
"port": "465",
|
|
217
304
|
"secure": true
|
|
218
305
|
},
|
|
219
306
|
|
|
220
307
|
"QQ": {
|
|
308
|
+
"description": "QQ Mail",
|
|
221
309
|
"domains": ["qq.com"],
|
|
222
310
|
"host": "smtp.qq.com",
|
|
223
311
|
"port": 465,
|
|
@@ -225,6 +313,7 @@
|
|
|
225
313
|
},
|
|
226
314
|
|
|
227
315
|
"QQex": {
|
|
316
|
+
"description": "QQ Enterprise Mail",
|
|
228
317
|
"aliases": ["QQ Enterprise"],
|
|
229
318
|
"domains": ["exmail.qq.com"],
|
|
230
319
|
"host": "smtp.exmail.qq.com",
|
|
@@ -232,89 +321,181 @@
|
|
|
232
321
|
"secure": true
|
|
233
322
|
},
|
|
234
323
|
|
|
324
|
+
"Resend": {
|
|
325
|
+
"description": "Resend",
|
|
326
|
+
"host": "smtp.resend.com",
|
|
327
|
+
"port": 465,
|
|
328
|
+
"secure": true
|
|
329
|
+
},
|
|
330
|
+
|
|
235
331
|
"SendCloud": {
|
|
332
|
+
"description": "SendCloud (Chinese email delivery)",
|
|
236
333
|
"host": "smtp.sendcloud.net",
|
|
237
334
|
"port": 2525
|
|
238
335
|
},
|
|
239
336
|
|
|
240
337
|
"SendGrid": {
|
|
338
|
+
"description": "SendGrid",
|
|
241
339
|
"host": "smtp.sendgrid.net",
|
|
242
340
|
"port": 587
|
|
243
341
|
},
|
|
244
342
|
|
|
245
343
|
"SendinBlue": {
|
|
344
|
+
"description": "Brevo (formerly Sendinblue)",
|
|
246
345
|
"aliases": ["Brevo"],
|
|
247
346
|
"host": "smtp-relay.brevo.com",
|
|
248
347
|
"port": 587
|
|
249
348
|
},
|
|
250
349
|
|
|
251
350
|
"SendPulse": {
|
|
351
|
+
"description": "SendPulse",
|
|
252
352
|
"host": "smtp-pulse.com",
|
|
253
353
|
"port": 465,
|
|
254
354
|
"secure": true
|
|
255
355
|
},
|
|
256
356
|
|
|
257
357
|
"SES": {
|
|
358
|
+
"description": "AWS SES US East (N. Virginia)",
|
|
258
359
|
"host": "email-smtp.us-east-1.amazonaws.com",
|
|
259
360
|
"port": 465,
|
|
260
361
|
"secure": true
|
|
261
362
|
},
|
|
262
363
|
|
|
263
|
-
"SES-
|
|
264
|
-
"
|
|
364
|
+
"SES-AP-NORTHEAST-1": {
|
|
365
|
+
"description": "AWS SES Asia Pacific (Tokyo)",
|
|
366
|
+
"host": "email-smtp.ap-northeast-1.amazonaws.com",
|
|
265
367
|
"port": 465,
|
|
266
368
|
"secure": true
|
|
267
369
|
},
|
|
268
370
|
|
|
269
|
-
"SES-
|
|
270
|
-
"
|
|
371
|
+
"SES-AP-NORTHEAST-2": {
|
|
372
|
+
"description": "AWS SES Asia Pacific (Seoul)",
|
|
373
|
+
"host": "email-smtp.ap-northeast-2.amazonaws.com",
|
|
271
374
|
"port": 465,
|
|
272
375
|
"secure": true
|
|
273
376
|
},
|
|
274
377
|
|
|
275
|
-
"SES-
|
|
276
|
-
"
|
|
378
|
+
"SES-AP-NORTHEAST-3": {
|
|
379
|
+
"description": "AWS SES Asia Pacific (Osaka)",
|
|
380
|
+
"host": "email-smtp.ap-northeast-3.amazonaws.com",
|
|
277
381
|
"port": 465,
|
|
278
382
|
"secure": true
|
|
279
383
|
},
|
|
280
384
|
|
|
281
385
|
"SES-AP-SOUTH-1": {
|
|
386
|
+
"description": "AWS SES Asia Pacific (Mumbai)",
|
|
282
387
|
"host": "email-smtp.ap-south-1.amazonaws.com",
|
|
283
388
|
"port": 465,
|
|
284
389
|
"secure": true
|
|
285
390
|
},
|
|
286
391
|
|
|
287
|
-
"SES-AP-
|
|
288
|
-
"
|
|
392
|
+
"SES-AP-SOUTHEAST-1": {
|
|
393
|
+
"description": "AWS SES Asia Pacific (Singapore)",
|
|
394
|
+
"host": "email-smtp.ap-southeast-1.amazonaws.com",
|
|
289
395
|
"port": 465,
|
|
290
396
|
"secure": true
|
|
291
397
|
},
|
|
292
398
|
|
|
293
|
-
"SES-AP-
|
|
294
|
-
"
|
|
399
|
+
"SES-AP-SOUTHEAST-2": {
|
|
400
|
+
"description": "AWS SES Asia Pacific (Sydney)",
|
|
401
|
+
"host": "email-smtp.ap-southeast-2.amazonaws.com",
|
|
295
402
|
"port": 465,
|
|
296
403
|
"secure": true
|
|
297
404
|
},
|
|
298
405
|
|
|
299
|
-
"SES-
|
|
300
|
-
"
|
|
406
|
+
"SES-CA-CENTRAL-1": {
|
|
407
|
+
"description": "AWS SES Canada (Central)",
|
|
408
|
+
"host": "email-smtp.ca-central-1.amazonaws.com",
|
|
301
409
|
"port": 465,
|
|
302
410
|
"secure": true
|
|
303
411
|
},
|
|
304
412
|
|
|
305
|
-
"SES-
|
|
306
|
-
"
|
|
413
|
+
"SES-EU-CENTRAL-1": {
|
|
414
|
+
"description": "AWS SES Europe (Frankfurt)",
|
|
415
|
+
"host": "email-smtp.eu-central-1.amazonaws.com",
|
|
307
416
|
"port": 465,
|
|
308
417
|
"secure": true
|
|
309
418
|
},
|
|
310
419
|
|
|
311
|
-
"SES-
|
|
312
|
-
"
|
|
420
|
+
"SES-EU-NORTH-1": {
|
|
421
|
+
"description": "AWS SES Europe (Stockholm)",
|
|
422
|
+
"host": "email-smtp.eu-north-1.amazonaws.com",
|
|
423
|
+
"port": 465,
|
|
424
|
+
"secure": true
|
|
425
|
+
},
|
|
426
|
+
|
|
427
|
+
"SES-EU-WEST-1": {
|
|
428
|
+
"description": "AWS SES Europe (Ireland)",
|
|
429
|
+
"host": "email-smtp.eu-west-1.amazonaws.com",
|
|
430
|
+
"port": 465,
|
|
431
|
+
"secure": true
|
|
432
|
+
},
|
|
433
|
+
|
|
434
|
+
"SES-EU-WEST-2": {
|
|
435
|
+
"description": "AWS SES Europe (London)",
|
|
436
|
+
"host": "email-smtp.eu-west-2.amazonaws.com",
|
|
437
|
+
"port": 465,
|
|
438
|
+
"secure": true
|
|
439
|
+
},
|
|
440
|
+
|
|
441
|
+
"SES-EU-WEST-3": {
|
|
442
|
+
"description": "AWS SES Europe (Paris)",
|
|
443
|
+
"host": "email-smtp.eu-west-3.amazonaws.com",
|
|
444
|
+
"port": 465,
|
|
445
|
+
"secure": true
|
|
446
|
+
},
|
|
447
|
+
|
|
448
|
+
"SES-SA-EAST-1": {
|
|
449
|
+
"description": "AWS SES South America (São Paulo)",
|
|
450
|
+
"host": "email-smtp.sa-east-1.amazonaws.com",
|
|
451
|
+
"port": 465,
|
|
452
|
+
"secure": true
|
|
453
|
+
},
|
|
454
|
+
|
|
455
|
+
"SES-US-EAST-1": {
|
|
456
|
+
"description": "AWS SES US East (N. Virginia)",
|
|
457
|
+
"host": "email-smtp.us-east-1.amazonaws.com",
|
|
458
|
+
"port": 465,
|
|
459
|
+
"secure": true
|
|
460
|
+
},
|
|
461
|
+
|
|
462
|
+
"SES-US-EAST-2": {
|
|
463
|
+
"description": "AWS SES US East (Ohio)",
|
|
464
|
+
"host": "email-smtp.us-east-2.amazonaws.com",
|
|
465
|
+
"port": 465,
|
|
466
|
+
"secure": true
|
|
467
|
+
},
|
|
468
|
+
|
|
469
|
+
"SES-US-GOV-EAST-1": {
|
|
470
|
+
"description": "AWS SES GovCloud (US-East)",
|
|
471
|
+
"host": "email-smtp.us-gov-east-1.amazonaws.com",
|
|
472
|
+
"port": 465,
|
|
473
|
+
"secure": true
|
|
474
|
+
},
|
|
475
|
+
|
|
476
|
+
"SES-US-GOV-WEST-1": {
|
|
477
|
+
"description": "AWS SES GovCloud (US-West)",
|
|
478
|
+
"host": "email-smtp.us-gov-west-1.amazonaws.com",
|
|
479
|
+
"port": 465,
|
|
480
|
+
"secure": true
|
|
481
|
+
},
|
|
482
|
+
|
|
483
|
+
"SES-US-WEST-1": {
|
|
484
|
+
"description": "AWS SES US West (N. California)",
|
|
485
|
+
"host": "email-smtp.us-west-1.amazonaws.com",
|
|
486
|
+
"port": 465,
|
|
487
|
+
"secure": true
|
|
488
|
+
},
|
|
489
|
+
|
|
490
|
+
"SES-US-WEST-2": {
|
|
491
|
+
"description": "AWS SES US West (Oregon)",
|
|
492
|
+
"host": "email-smtp.us-west-2.amazonaws.com",
|
|
313
493
|
"port": 465,
|
|
314
494
|
"secure": true
|
|
315
495
|
},
|
|
316
496
|
|
|
317
497
|
"Seznam": {
|
|
498
|
+
"description": "Seznam Email (Czech email provider)",
|
|
318
499
|
"aliases": ["Seznam Email"],
|
|
319
500
|
"domains": ["seznam.cz", "email.cz", "post.cz", "spoluzaci.cz"],
|
|
320
501
|
"host": "smtp.seznam.cz",
|
|
@@ -322,7 +503,14 @@
|
|
|
322
503
|
"secure": true
|
|
323
504
|
},
|
|
324
505
|
|
|
506
|
+
"SMTP2GO": {
|
|
507
|
+
"description": "SMTP2GO",
|
|
508
|
+
"host": "mail.smtp2go.com",
|
|
509
|
+
"port": 2525
|
|
510
|
+
},
|
|
511
|
+
|
|
325
512
|
"Sparkpost": {
|
|
513
|
+
"description": "SparkPost",
|
|
326
514
|
"aliases": ["SparkPost", "SparkPost Mail"],
|
|
327
515
|
"domains": ["sparkpost.com"],
|
|
328
516
|
"host": "smtp.sparkpostmail.com",
|
|
@@ -331,11 +519,21 @@
|
|
|
331
519
|
},
|
|
332
520
|
|
|
333
521
|
"Tipimail": {
|
|
522
|
+
"description": "Tipimail (email delivery service)",
|
|
334
523
|
"host": "smtp.tipimail.com",
|
|
335
524
|
"port": 587
|
|
336
525
|
},
|
|
337
526
|
|
|
527
|
+
"Tutanota": {
|
|
528
|
+
"description": "Tutanota (Tuta Mail)",
|
|
529
|
+
"domains": ["tutanota.com", "tuta.com", "tutanota.de", "tuta.io"],
|
|
530
|
+
"host": "smtp.tutanota.com",
|
|
531
|
+
"port": 465,
|
|
532
|
+
"secure": true
|
|
533
|
+
},
|
|
534
|
+
|
|
338
535
|
"Yahoo": {
|
|
536
|
+
"description": "Yahoo Mail",
|
|
339
537
|
"domains": ["yahoo.com"],
|
|
340
538
|
"host": "smtp.mail.yahoo.com",
|
|
341
539
|
"port": 465,
|
|
@@ -343,6 +541,7 @@
|
|
|
343
541
|
},
|
|
344
542
|
|
|
345
543
|
"Yandex": {
|
|
544
|
+
"description": "Yandex Mail",
|
|
346
545
|
"domains": ["yandex.ru"],
|
|
347
546
|
"host": "smtp.yandex.ru",
|
|
348
547
|
"port": 465,
|
|
@@ -350,21 +549,10 @@
|
|
|
350
549
|
},
|
|
351
550
|
|
|
352
551
|
"Zoho": {
|
|
552
|
+
"description": "Zoho Mail",
|
|
353
553
|
"host": "smtp.zoho.com",
|
|
354
554
|
"port": 465,
|
|
355
555
|
"secure": true,
|
|
356
556
|
"authMethod": "LOGIN"
|
|
357
|
-
},
|
|
358
|
-
|
|
359
|
-
"126": {
|
|
360
|
-
"host": "smtp.126.com",
|
|
361
|
-
"port": 465,
|
|
362
|
-
"secure": true
|
|
363
|
-
},
|
|
364
|
-
|
|
365
|
-
"163": {
|
|
366
|
-
"host": "smtp.163.com",
|
|
367
|
-
"port": 465,
|
|
368
|
-
"secure": true
|
|
369
557
|
}
|
|
370
558
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodemailer",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5",
|
|
4
4
|
"description": "Easy as cake e-mail sending from your Node.js applications",
|
|
5
5
|
"main": "lib/nodemailer.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://nodemailer.com/",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@aws-sdk/client-sesv2": "3.
|
|
26
|
+
"@aws-sdk/client-sesv2": "3.839.0",
|
|
27
27
|
"bunyan": "1.8.15",
|
|
28
28
|
"c8": "10.1.3",
|
|
29
29
|
"eslint": "8.57.0",
|
|
30
30
|
"eslint-config-nodemailer": "1.2.0",
|
|
31
31
|
"eslint-config-prettier": "9.1.0",
|
|
32
32
|
"libbase64": "1.3.0",
|
|
33
|
-
"libmime": "5.3.
|
|
33
|
+
"libmime": "5.3.7",
|
|
34
34
|
"libqp": "2.1.1",
|
|
35
35
|
"nodemailer-ntlm-auth": "1.0.4",
|
|
36
36
|
"proxy": "1.0.2",
|
|
37
37
|
"proxy-test-server": "1.0.0",
|
|
38
|
-
"smtp-server": "3.
|
|
38
|
+
"smtp-server": "3.14.0"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=6.0.0"
|