nodemailer 7.0.4 → 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 +7 -0
- package/lib/well-known/services.json +224 -42
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [7.0.4](https://github.com/nodemailer/nodemailer/compare/v7.0.3...v7.0.4) (2025-06-29)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,12 +1,28 @@
|
|
|
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,
|
|
@@ -14,56 +30,64 @@
|
|
|
14
30
|
},
|
|
15
31
|
|
|
16
32
|
"AliyunQiye": {
|
|
33
|
+
"description": "Alibaba Cloud Enterprise Mail",
|
|
17
34
|
"host": "smtp.qiye.aliyun.com",
|
|
18
35
|
"port": 465,
|
|
19
36
|
"secure": true
|
|
20
37
|
},
|
|
21
38
|
|
|
22
39
|
"AOL": {
|
|
40
|
+
"description": "AOL Mail",
|
|
23
41
|
"domains": ["aol.com"],
|
|
24
42
|
"host": "smtp.aol.com",
|
|
25
43
|
"port": 587
|
|
26
44
|
},
|
|
27
45
|
|
|
28
46
|
"Bluewin": {
|
|
47
|
+
"description": "Bluewin (Swiss email provider)",
|
|
29
48
|
"host": "smtpauths.bluewin.ch",
|
|
30
49
|
"domains": ["bluewin.ch"],
|
|
31
50
|
"port": 465
|
|
32
51
|
},
|
|
33
52
|
|
|
34
53
|
"DebugMail": {
|
|
54
|
+
"description": "DebugMail (email testing service)",
|
|
35
55
|
"host": "debugmail.io",
|
|
36
56
|
"port": 25
|
|
37
57
|
},
|
|
38
58
|
|
|
39
59
|
"DynectEmail": {
|
|
60
|
+
"description": "Dyn Email Delivery",
|
|
40
61
|
"aliases": ["Dynect"],
|
|
41
62
|
"host": "smtp.dynect.net",
|
|
42
63
|
"port": 25
|
|
43
64
|
},
|
|
44
65
|
|
|
66
|
+
"ElasticEmail": {
|
|
67
|
+
"description": "Elastic Email",
|
|
68
|
+
"aliases": ["Elastic Email"],
|
|
69
|
+
"host": "smtp.elasticemail.com",
|
|
70
|
+
"port": 465,
|
|
71
|
+
"secure": true
|
|
72
|
+
},
|
|
73
|
+
|
|
45
74
|
"Ethereal": {
|
|
75
|
+
"description": "Ethereal Email (email testing service)",
|
|
46
76
|
"aliases": ["ethereal.email"],
|
|
47
77
|
"host": "smtp.ethereal.email",
|
|
48
78
|
"port": 587
|
|
49
79
|
},
|
|
50
80
|
|
|
51
81
|
"FastMail": {
|
|
82
|
+
"description": "FastMail",
|
|
52
83
|
"domains": ["fastmail.fm"],
|
|
53
84
|
"host": "smtp.fastmail.com",
|
|
54
85
|
"port": 465,
|
|
55
86
|
"secure": true
|
|
56
87
|
},
|
|
57
88
|
|
|
58
|
-
"Forward Email": {
|
|
59
|
-
"aliases": ["FE", "ForwardEmail"],
|
|
60
|
-
"domains": ["forwardemail.net"],
|
|
61
|
-
"host": "smtp.forwardemail.net",
|
|
62
|
-
"port": 465,
|
|
63
|
-
"secure": true
|
|
64
|
-
},
|
|
65
|
-
|
|
66
89
|
"Feishu Mail": {
|
|
90
|
+
"description": "Feishu Mail (Lark)",
|
|
67
91
|
"aliases": ["Feishu", "FeishuMail"],
|
|
68
92
|
"domains": ["www.feishu.cn"],
|
|
69
93
|
"host": "smtp.feishu.cn",
|
|
@@ -71,13 +95,24 @@
|
|
|
71
95
|
"secure": true
|
|
72
96
|
},
|
|
73
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
|
+
|
|
74
107
|
"GandiMail": {
|
|
108
|
+
"description": "Gandi Mail",
|
|
75
109
|
"aliases": ["Gandi", "Gandi Mail"],
|
|
76
110
|
"host": "mail.gandi.net",
|
|
77
111
|
"port": 587
|
|
78
112
|
},
|
|
79
113
|
|
|
80
114
|
"Gmail": {
|
|
115
|
+
"description": "Gmail",
|
|
81
116
|
"aliases": ["Google Mail"],
|
|
82
117
|
"domains": ["gmail.com", "googlemail.com"],
|
|
83
118
|
"host": "smtp.gmail.com",
|
|
@@ -85,26 +120,38 @@
|
|
|
85
120
|
"secure": true
|
|
86
121
|
},
|
|
87
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
|
+
|
|
88
130
|
"Godaddy": {
|
|
131
|
+
"description": "GoDaddy Email (US)",
|
|
89
132
|
"host": "smtpout.secureserver.net",
|
|
90
133
|
"port": 25
|
|
91
134
|
},
|
|
92
135
|
|
|
93
136
|
"GodaddyAsia": {
|
|
137
|
+
"description": "GoDaddy Email (Asia)",
|
|
94
138
|
"host": "smtp.asia.secureserver.net",
|
|
95
139
|
"port": 25
|
|
96
140
|
},
|
|
97
141
|
|
|
98
142
|
"GodaddyEurope": {
|
|
143
|
+
"description": "GoDaddy Email (Europe)",
|
|
99
144
|
"host": "smtp.europe.secureserver.net",
|
|
100
145
|
"port": 25
|
|
101
146
|
},
|
|
102
147
|
|
|
103
148
|
"hot.ee": {
|
|
149
|
+
"description": "Hot.ee (Estonian email provider)",
|
|
104
150
|
"host": "mail.hot.ee"
|
|
105
151
|
},
|
|
106
152
|
|
|
107
153
|
"Hotmail": {
|
|
154
|
+
"description": "Outlook.com / Hotmail",
|
|
108
155
|
"aliases": ["Outlook", "Outlook.com", "Hotmail.com"],
|
|
109
156
|
"domains": ["hotmail.com", "outlook.com"],
|
|
110
157
|
"host": "smtp-mail.outlook.com",
|
|
@@ -112,6 +159,7 @@
|
|
|
112
159
|
},
|
|
113
160
|
|
|
114
161
|
"iCloud": {
|
|
162
|
+
"description": "iCloud Mail",
|
|
115
163
|
"aliases": ["Me", "Mac"],
|
|
116
164
|
"domains": ["me.com", "mac.com"],
|
|
117
165
|
"host": "smtp.mail.me.com",
|
|
@@ -119,72 +167,107 @@
|
|
|
119
167
|
},
|
|
120
168
|
|
|
121
169
|
"Infomaniak": {
|
|
170
|
+
"description": "Infomaniak Mail (Swiss hosting provider)",
|
|
122
171
|
"host": "mail.infomaniak.com",
|
|
123
172
|
"domains": ["ik.me", "ikmail.com", "etik.com"],
|
|
124
173
|
"port": 587
|
|
125
174
|
},
|
|
175
|
+
|
|
126
176
|
"Loopia": {
|
|
177
|
+
"description": "Loopia (Swedish hosting provider)",
|
|
127
178
|
"host": "mailcluster.loopia.se",
|
|
128
179
|
"port": 465
|
|
129
180
|
},
|
|
181
|
+
|
|
182
|
+
"Loops": {
|
|
183
|
+
"description": "Loops",
|
|
184
|
+
"host": "smtp.loops.so",
|
|
185
|
+
"port": 587
|
|
186
|
+
},
|
|
187
|
+
|
|
130
188
|
"mail.ee": {
|
|
189
|
+
"description": "Mail.ee (Estonian email provider)",
|
|
131
190
|
"host": "smtp.mail.ee"
|
|
132
191
|
},
|
|
133
192
|
|
|
134
193
|
"Mail.ru": {
|
|
194
|
+
"description": "Mail.ru",
|
|
135
195
|
"host": "smtp.mail.ru",
|
|
136
196
|
"port": 465,
|
|
137
197
|
"secure": true
|
|
138
198
|
},
|
|
139
199
|
|
|
140
200
|
"Mailcatch.app": {
|
|
201
|
+
"description": "Mailcatch (email testing service)",
|
|
141
202
|
"host": "sandbox-smtp.mailcatch.app",
|
|
142
203
|
"port": 2525
|
|
143
204
|
},
|
|
144
205
|
|
|
145
206
|
"Maildev": {
|
|
207
|
+
"description": "MailDev (local email testing)",
|
|
146
208
|
"port": 1025,
|
|
147
209
|
"ignoreTLS": true
|
|
148
210
|
},
|
|
149
211
|
|
|
212
|
+
"MailerSend": {
|
|
213
|
+
"description": "MailerSend",
|
|
214
|
+
"host": "smtp.mailersend.net",
|
|
215
|
+
"port": 587
|
|
216
|
+
},
|
|
217
|
+
|
|
150
218
|
"Mailgun": {
|
|
219
|
+
"description": "Mailgun",
|
|
151
220
|
"host": "smtp.mailgun.org",
|
|
152
221
|
"port": 465,
|
|
153
222
|
"secure": true
|
|
154
223
|
},
|
|
155
224
|
|
|
156
225
|
"Mailjet": {
|
|
226
|
+
"description": "Mailjet",
|
|
157
227
|
"host": "in.mailjet.com",
|
|
158
228
|
"port": 587
|
|
159
229
|
},
|
|
160
230
|
|
|
161
231
|
"Mailosaur": {
|
|
232
|
+
"description": "Mailosaur (email testing service)",
|
|
162
233
|
"host": "mailosaur.io",
|
|
163
234
|
"port": 25
|
|
164
235
|
},
|
|
165
236
|
|
|
166
237
|
"Mailtrap": {
|
|
238
|
+
"description": "Mailtrap",
|
|
167
239
|
"host": "live.smtp.mailtrap.io",
|
|
168
240
|
"port": 587
|
|
169
241
|
},
|
|
170
242
|
|
|
171
243
|
"Mandrill": {
|
|
244
|
+
"description": "Mandrill (by Mailchimp)",
|
|
172
245
|
"host": "smtp.mandrillapp.com",
|
|
173
246
|
"port": 587
|
|
174
247
|
},
|
|
175
248
|
|
|
176
249
|
"Naver": {
|
|
250
|
+
"description": "Naver Mail (Korean email provider)",
|
|
177
251
|
"host": "smtp.naver.com",
|
|
178
252
|
"port": 587
|
|
179
253
|
},
|
|
180
254
|
|
|
255
|
+
"OhMySMTP": {
|
|
256
|
+
"description": "OhMySMTP (email delivery service)",
|
|
257
|
+
"host": "smtp.ohmysmtp.com",
|
|
258
|
+
"port": 587,
|
|
259
|
+
"secure": false
|
|
260
|
+
},
|
|
261
|
+
|
|
181
262
|
"One": {
|
|
263
|
+
"description": "One.com Email",
|
|
182
264
|
"host": "send.one.com",
|
|
183
265
|
"port": 465,
|
|
184
266
|
"secure": true
|
|
185
267
|
},
|
|
186
268
|
|
|
187
269
|
"OpenMailBox": {
|
|
270
|
+
"description": "OpenMailBox",
|
|
188
271
|
"aliases": ["OMB", "openmailbox.org"],
|
|
189
272
|
"host": "smtp.openmailbox.org",
|
|
190
273
|
"port": 465,
|
|
@@ -192,24 +275,21 @@
|
|
|
192
275
|
},
|
|
193
276
|
|
|
194
277
|
"Outlook365": {
|
|
278
|
+
"description": "Microsoft 365 / Office 365",
|
|
195
279
|
"host": "smtp.office365.com",
|
|
196
280
|
"port": 587,
|
|
197
281
|
"secure": false
|
|
198
282
|
},
|
|
199
283
|
|
|
200
|
-
"OhMySMTP": {
|
|
201
|
-
"host": "smtp.ohmysmtp.com",
|
|
202
|
-
"port": 587,
|
|
203
|
-
"secure": false
|
|
204
|
-
},
|
|
205
|
-
|
|
206
284
|
"Postmark": {
|
|
285
|
+
"description": "Postmark",
|
|
207
286
|
"aliases": ["PostmarkApp"],
|
|
208
287
|
"host": "smtp.postmarkapp.com",
|
|
209
288
|
"port": 2525
|
|
210
289
|
},
|
|
211
290
|
|
|
212
291
|
"Proton": {
|
|
292
|
+
"description": "Proton Mail",
|
|
213
293
|
"aliases": ["ProtonMail", "Proton.me", "Protonmail.com", "Protonmail.ch"],
|
|
214
294
|
"domains": ["proton.me", "protonmail.com", "pm.me", "protonmail.ch"],
|
|
215
295
|
"host": "smtp.protonmail.ch",
|
|
@@ -218,12 +298,14 @@
|
|
|
218
298
|
},
|
|
219
299
|
|
|
220
300
|
"qiye.aliyun": {
|
|
301
|
+
"description": "Alibaba Mail Enterprise Edition",
|
|
221
302
|
"host": "smtp.mxhichina.com",
|
|
222
303
|
"port": "465",
|
|
223
304
|
"secure": true
|
|
224
305
|
},
|
|
225
306
|
|
|
226
307
|
"QQ": {
|
|
308
|
+
"description": "QQ Mail",
|
|
227
309
|
"domains": ["qq.com"],
|
|
228
310
|
"host": "smtp.qq.com",
|
|
229
311
|
"port": 465,
|
|
@@ -231,6 +313,7 @@
|
|
|
231
313
|
},
|
|
232
314
|
|
|
233
315
|
"QQex": {
|
|
316
|
+
"description": "QQ Enterprise Mail",
|
|
234
317
|
"aliases": ["QQ Enterprise"],
|
|
235
318
|
"domains": ["exmail.qq.com"],
|
|
236
319
|
"host": "smtp.exmail.qq.com",
|
|
@@ -238,89 +321,181 @@
|
|
|
238
321
|
"secure": true
|
|
239
322
|
},
|
|
240
323
|
|
|
324
|
+
"Resend": {
|
|
325
|
+
"description": "Resend",
|
|
326
|
+
"host": "smtp.resend.com",
|
|
327
|
+
"port": 465,
|
|
328
|
+
"secure": true
|
|
329
|
+
},
|
|
330
|
+
|
|
241
331
|
"SendCloud": {
|
|
332
|
+
"description": "SendCloud (Chinese email delivery)",
|
|
242
333
|
"host": "smtp.sendcloud.net",
|
|
243
334
|
"port": 2525
|
|
244
335
|
},
|
|
245
336
|
|
|
246
337
|
"SendGrid": {
|
|
338
|
+
"description": "SendGrid",
|
|
247
339
|
"host": "smtp.sendgrid.net",
|
|
248
340
|
"port": 587
|
|
249
341
|
},
|
|
250
342
|
|
|
251
343
|
"SendinBlue": {
|
|
344
|
+
"description": "Brevo (formerly Sendinblue)",
|
|
252
345
|
"aliases": ["Brevo"],
|
|
253
346
|
"host": "smtp-relay.brevo.com",
|
|
254
347
|
"port": 587
|
|
255
348
|
},
|
|
256
349
|
|
|
257
350
|
"SendPulse": {
|
|
351
|
+
"description": "SendPulse",
|
|
258
352
|
"host": "smtp-pulse.com",
|
|
259
353
|
"port": 465,
|
|
260
354
|
"secure": true
|
|
261
355
|
},
|
|
262
356
|
|
|
263
357
|
"SES": {
|
|
358
|
+
"description": "AWS SES US East (N. Virginia)",
|
|
264
359
|
"host": "email-smtp.us-east-1.amazonaws.com",
|
|
265
360
|
"port": 465,
|
|
266
361
|
"secure": true
|
|
267
362
|
},
|
|
268
363
|
|
|
269
|
-
"SES-
|
|
270
|
-
"
|
|
364
|
+
"SES-AP-NORTHEAST-1": {
|
|
365
|
+
"description": "AWS SES Asia Pacific (Tokyo)",
|
|
366
|
+
"host": "email-smtp.ap-northeast-1.amazonaws.com",
|
|
271
367
|
"port": 465,
|
|
272
368
|
"secure": true
|
|
273
369
|
},
|
|
274
370
|
|
|
275
|
-
"SES-
|
|
276
|
-
"
|
|
371
|
+
"SES-AP-NORTHEAST-2": {
|
|
372
|
+
"description": "AWS SES Asia Pacific (Seoul)",
|
|
373
|
+
"host": "email-smtp.ap-northeast-2.amazonaws.com",
|
|
277
374
|
"port": 465,
|
|
278
375
|
"secure": true
|
|
279
376
|
},
|
|
280
377
|
|
|
281
|
-
"SES-
|
|
282
|
-
"
|
|
378
|
+
"SES-AP-NORTHEAST-3": {
|
|
379
|
+
"description": "AWS SES Asia Pacific (Osaka)",
|
|
380
|
+
"host": "email-smtp.ap-northeast-3.amazonaws.com",
|
|
283
381
|
"port": 465,
|
|
284
382
|
"secure": true
|
|
285
383
|
},
|
|
286
384
|
|
|
287
385
|
"SES-AP-SOUTH-1": {
|
|
386
|
+
"description": "AWS SES Asia Pacific (Mumbai)",
|
|
288
387
|
"host": "email-smtp.ap-south-1.amazonaws.com",
|
|
289
388
|
"port": 465,
|
|
290
389
|
"secure": true
|
|
291
390
|
},
|
|
292
391
|
|
|
293
|
-
"SES-AP-
|
|
294
|
-
"
|
|
392
|
+
"SES-AP-SOUTHEAST-1": {
|
|
393
|
+
"description": "AWS SES Asia Pacific (Singapore)",
|
|
394
|
+
"host": "email-smtp.ap-southeast-1.amazonaws.com",
|
|
295
395
|
"port": 465,
|
|
296
396
|
"secure": true
|
|
297
397
|
},
|
|
298
398
|
|
|
299
|
-
"SES-AP-
|
|
300
|
-
"
|
|
399
|
+
"SES-AP-SOUTHEAST-2": {
|
|
400
|
+
"description": "AWS SES Asia Pacific (Sydney)",
|
|
401
|
+
"host": "email-smtp.ap-southeast-2.amazonaws.com",
|
|
301
402
|
"port": 465,
|
|
302
403
|
"secure": true
|
|
303
404
|
},
|
|
304
405
|
|
|
305
|
-
"SES-
|
|
306
|
-
"
|
|
406
|
+
"SES-CA-CENTRAL-1": {
|
|
407
|
+
"description": "AWS SES Canada (Central)",
|
|
408
|
+
"host": "email-smtp.ca-central-1.amazonaws.com",
|
|
307
409
|
"port": 465,
|
|
308
410
|
"secure": true
|
|
309
411
|
},
|
|
310
412
|
|
|
311
|
-
"SES-
|
|
312
|
-
"
|
|
413
|
+
"SES-EU-CENTRAL-1": {
|
|
414
|
+
"description": "AWS SES Europe (Frankfurt)",
|
|
415
|
+
"host": "email-smtp.eu-central-1.amazonaws.com",
|
|
313
416
|
"port": 465,
|
|
314
417
|
"secure": true
|
|
315
418
|
},
|
|
316
419
|
|
|
317
|
-
"SES-
|
|
318
|
-
"
|
|
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",
|
|
319
493
|
"port": 465,
|
|
320
494
|
"secure": true
|
|
321
495
|
},
|
|
322
496
|
|
|
323
497
|
"Seznam": {
|
|
498
|
+
"description": "Seznam Email (Czech email provider)",
|
|
324
499
|
"aliases": ["Seznam Email"],
|
|
325
500
|
"domains": ["seznam.cz", "email.cz", "post.cz", "spoluzaci.cz"],
|
|
326
501
|
"host": "smtp.seznam.cz",
|
|
@@ -328,7 +503,14 @@
|
|
|
328
503
|
"secure": true
|
|
329
504
|
},
|
|
330
505
|
|
|
506
|
+
"SMTP2GO": {
|
|
507
|
+
"description": "SMTP2GO",
|
|
508
|
+
"host": "mail.smtp2go.com",
|
|
509
|
+
"port": 2525
|
|
510
|
+
},
|
|
511
|
+
|
|
331
512
|
"Sparkpost": {
|
|
513
|
+
"description": "SparkPost",
|
|
332
514
|
"aliases": ["SparkPost", "SparkPost Mail"],
|
|
333
515
|
"domains": ["sparkpost.com"],
|
|
334
516
|
"host": "smtp.sparkpostmail.com",
|
|
@@ -337,11 +519,21 @@
|
|
|
337
519
|
},
|
|
338
520
|
|
|
339
521
|
"Tipimail": {
|
|
522
|
+
"description": "Tipimail (email delivery service)",
|
|
340
523
|
"host": "smtp.tipimail.com",
|
|
341
524
|
"port": 587
|
|
342
525
|
},
|
|
343
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
|
+
|
|
344
535
|
"Yahoo": {
|
|
536
|
+
"description": "Yahoo Mail",
|
|
345
537
|
"domains": ["yahoo.com"],
|
|
346
538
|
"host": "smtp.mail.yahoo.com",
|
|
347
539
|
"port": 465,
|
|
@@ -349,6 +541,7 @@
|
|
|
349
541
|
},
|
|
350
542
|
|
|
351
543
|
"Yandex": {
|
|
544
|
+
"description": "Yandex Mail",
|
|
352
545
|
"domains": ["yandex.ru"],
|
|
353
546
|
"host": "smtp.yandex.ru",
|
|
354
547
|
"port": 465,
|
|
@@ -356,21 +549,10 @@
|
|
|
356
549
|
},
|
|
357
550
|
|
|
358
551
|
"Zoho": {
|
|
552
|
+
"description": "Zoho Mail",
|
|
359
553
|
"host": "smtp.zoho.com",
|
|
360
554
|
"port": 465,
|
|
361
555
|
"secure": true,
|
|
362
556
|
"authMethod": "LOGIN"
|
|
363
|
-
},
|
|
364
|
-
|
|
365
|
-
"126": {
|
|
366
|
-
"host": "smtp.126.com",
|
|
367
|
-
"port": 465,
|
|
368
|
-
"secure": true
|
|
369
|
-
},
|
|
370
|
-
|
|
371
|
-
"163": {
|
|
372
|
-
"host": "smtp.163.com",
|
|
373
|
-
"port": 465,
|
|
374
|
-
"secure": true
|
|
375
557
|
}
|
|
376
558
|
}
|