-
Notifications
You must be signed in to change notification settings - Fork 782
Expand file tree
/
Copy pathmail.ts
More file actions
290 lines (268 loc) · 6.61 KB
/
mail.ts
File metadata and controls
290 lines (268 loc) · 6.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import { Client } from "@sendgrid/client";
import sgMail from "@sendgrid/mail";
// Test setClient() method
sgMail.setClient(new Client());
// Test setApiKey() method
sgMail.setApiKey("MY_SENDGRID_API_KEY");
// Test setSubstitutionWrappers() method
sgMail.setSubstitutionWrappers("{{", "}}")
// Test send() method
sgMail.send({
from: "someone@example.org",
to: "Some One <someone@example.org>",
cc: { name: "Some One", email: "someone@example.org" },
subject: "Test Email",
text: "This is a test email",
html: "<p>This is a test email</p>"
}).then(result => {
console.log("Sent email");
}, err => {
console.error(err);
});
sgMail.send({
from: "someone@example.org",
to: "Some One <someone@example.org>",
cc: { name: "Some One", email: "someone@example.org" },
subject: "Test Email",
text: "This is a test email",
html: "<p>This is a test email</p>"
}, false, (err) => {
if(err) console.error(err);
else console.log("Sent email");
});
// Test sendMultiple() method
sgMail.sendMultiple({
from: "someone@example.org",
to: [
"Some One <someone@example.org>",
{ name: "Some One", email: "someone@example.org" }
],
cc: { name: "Some One", email: "someone@example.org" },
subject: "Test Email",
text: "This is a test email",
html: "<p>This is a test email</p>"
}).then(result => {
console.log("Sent email");
}, err => {
console.error(err);
});
sgMail.sendMultiple({
from: "someone@example.org",
to: [
"Some One <someone@example.org>",
{ name: "Some One", email: "someone@example.org" }
],
cc: { name: "Some One", email: "someone@example.org" },
subject: "Test Email",
text: "This is a test email",
html: "<p>This is a test email</p>"
}, (err) => {
if(err) console.error(err);
else console.log("Sent email");
});
// Examples from the USE_CASES.md file
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
});
sgMail.send({
to: ['recipient1@example.org', 'recipient2@example.org'],
from: 'sender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
});
sgMail.sendMultiple({
to: ['recipient1@example.org', 'recipient2@example.org'],
from: 'sender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
});
sgMail.send({
to: 'recipient@example.org',
cc: 'someone@example.org',
bcc: ['me@example.org', 'you@example.org'],
from: 'sender@example.org',
replyTo: 'othersender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
});
sgMail.send([
{
to: 'recipient1@example.org',
from: 'sender@example.org',
subject: 'Hello recipient 1',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
},
{
to: 'recipient2@example.org',
from: 'other-sender@example.org',
subject: 'Hello recipient 2',
text: 'Hello other plain world!',
html: '<p>Hello other HTML world!</p>',
},
]);
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
templateId: '13b8f94f-bcae-4ec6-b752-70d6cb59f932',
substitutions: {
name: 'Some One',
city: 'Denver',
},
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello attachment',
html: '<p>Here’s an attachment for you!</p>',
attachments: [
{
content: 'Some base 64 encoded attachment content',
filename: 'some-attachment.txt',
type: 'plain/text',
disposition: 'attachment',
contentId: 'mytext'
},
],
});
sgMail.send({
personalizations: [
{
to: 'recipient1@example.org',
subject: 'Hello recipient 1',
substitutions: {
name: 'Recipient 1',
id: '123',
},
headers: {
'X-Custom-Header': 'Recipient 1',
},
customArgs: {
myArg: 'Recipient 1',
},
},
{
to: 'recipient2@example.org',
subject: 'Hello recipient 2',
substitutions: {
name: 'Recipient 2',
id: '456',
},
headers: {
'X-Custom-Header': 'Recipient 2',
},
customArgs: {
myArg: 'Recipient 1',
},
sendAt: 1500077141,
}
],
from: 'sender@example.org',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello manual content',
content: [
{
type: 'text/html',
value: '<p>Hello HTML world!</p>',
},
{
type: 'text/plain',
value: 'Hello plain world!',
},
],
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello custom header',
html: '<p>Some email content</p>',
headers: {
'X-CustomHeader': 'Custom header value',
},
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello delayed email',
html: '<p>Some email content</p>',
sendAt: 1500077141,
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello email with categories',
html: '<p>Some email content</p>',
categories: [
'transactional', 'customer', 'weekly',
],
});
sgMail.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello email with categories',
html: '<p>Some email content</p>',
category: 'transactional',
});
sgMail.send({
to: 'recipient@example.org',
cc: 'someone@example.org',
bcc: ['me@example.org', 'you@example.org'],
from: 'sender@example.org',
replyTo: 'othersender@example.org',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
templateId: 'sendgrid-template-id',
substitutionWrappers: ['{{', '}}'],
substitutions: {
name: 'Some One',
id: '123',
},
attachments: [
{
content: 'Some attachment content',
filename: 'some-attachment.txt',
},
],
categories: ['Transactional', 'My category'],
sendAt: 1500077141,
headers: {
'X-CustomHeader': 'Custom header value',
},
sections: {},
customArgs: {
myCustomArg: 123,
},
batchId: 'sendgrid-batch-id',
asm: {
groupId: 1
},
ipPoolName: 'sendgrid-ip-pool-name',
mailSettings: {},
trackingSettings: {},
});
//supports chaining with ts
sgMail.setClient(new Client())
.setApiKey("MY_SENDGRID_API_KEY")
.send({
to: 'recipient@example.org',
from: 'sender@example.org',
subject: 'Hello email with categories',
html: '<p>Some email content</p>',
category: 'transactional',
});