Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathExample.java
More file actions
Latest commit
279 lines (242 loc) · 10.8 KB
/
Copy pathExample.java
File metadata and controls
279 lines (242 loc) · 10.8 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
importcom.sendgrid.Method;
importcom.sendgrid.Request;
importcom.sendgrid.Response;
importcom.sendgrid.SendGrid;
importcom.sendgrid.helpers.mail.Mail;
importcom.sendgrid.helpers.mail.objects.*;
importjava.io.IOException;
publicclassExample {
// Fully populated Mail object
publicstaticMailbuildKitchenSink() {
Mailmail = newMail();
EmailfromEmail = newEmail();
fromEmail.setName("Example User");
fromEmail.setEmail("test@example.com");
mail.setFrom(fromEmail);
mail.setSubject("Hello World from the Twilio SendGrid Java Library");
Personalizationpersonalization = newPersonalization();
Emailto = newEmail();
to.setName("Example User");
to.setEmail("test1@example.com");
personalization.addTo(to);
to.setName("Example User");
to.setEmail("test2@example.com");
personalization.addTo(to);
Emailcc = newEmail();
cc.setName("Example User");
cc.setEmail("test3@example.com");
personalization.addCc(cc);
cc.setName("Example User");
cc.setEmail("test4@example.com");
personalization.addCc(cc);
Emailbcc = newEmail();
bcc.setName("Example User");
bcc.setEmail("test5@example.com");
personalization.addBcc(bcc);
bcc.setName("Example User");
bcc.setEmail("test6@example.com");
personalization.addBcc(bcc);
personalization.setSubject("Hello World from the Personalized Twilio SendGrid Java Library");
personalization.addHeader("X-Test", "test");
personalization.addHeader("X-Mock", "true");
personalization.addSubstitution("%name%", "Example User");
personalization.addSubstitution("%city%", "Riverside");
personalization.addCustomArg("user_id", "343");
personalization.addCustomArg("type", "marketing");
personalization.setSendAt(1443636843);
mail.addPersonalization(personalization);
Personalizationpersonalization2 = newPersonalization();
Emailto2 = newEmail();
to2.setName("Example User");
to2.setEmail("test1@example.com");
personalization2.addTo(to2);
EmailfromEmail2 = newEmail();
fromEmail2.setName("Example User");
fromEmail2.setEmail("test2@example.com");
personalization2.setFrom(fromEmail2);
to2.setName("Example User");
to2.setEmail("test3@example.com");
personalization2.addTo(to2);
Emailcc2 = newEmail();
cc2.setName("Example User");
cc2.setEmail("test4@example.com");
personalization2.addCc(cc2);
cc2.setName("Example User");
cc2.setEmail("test5@example.com");
personalization2.addCc(cc2);
Emailbcc2 = newEmail();
bcc2.setName("Example User");
bcc2.setEmail("test6@example.com");
personalization2.addBcc(bcc2);
bcc2.setName("Example User");
bcc2.setEmail("test7@example.com");
personalization2.addBcc(bcc2);
personalization2.setSubject("Hello World from the Personalized Twilio SendGrid Java Library");
personalization2.addHeader("X-Test", "test");
personalization2.addHeader("X-Mock", "true");
personalization2.addSubstitution("%name%", "Example User");
personalization2.addSubstitution("%city%", "Denver");
personalization2.addCustomArg("user_id", "343");
personalization2.addCustomArg("type", "marketing");
personalization2.setSendAt(1443636843);
mail.addPersonalization(personalization2);
Contentcontent = newContent();
content.setType("text/plain");
content.setValue("some text here");
mail.addContent(content);
content.setType("text/html");
content.setValue("<html><body>some text here</body></html>");
mail.addContent(content);
Attachmentsattachments = newAttachments();
attachments.setContent("TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdC4gQ3JhcyBwdW12");
attachments.setType("application/pdf");
attachments.setFilename("balance_001.pdf");
attachments.setDisposition("attachment");
attachments.setContentId("Balance Sheet");
mail.addAttachments(attachments);
Attachmentsattachments2 = newAttachments();
attachments2.setContent("BwdW");
attachments2.setType("image/png");
attachments2.setFilename("banner.png");
attachments2.setDisposition("inline");
attachments2.setContentId("Banner");
mail.addAttachments(attachments2);
mail.setTemplateId("13b8f94f-bcae-4ec6-b752-70d6cb59f932");
mail.addSection("%section1%", "Substitution Text for Section 1");
mail.addSection("%section2%", "Substitution Text for Section 2");
mail.addHeader("X-Test1", "1");
mail.addHeader("X-Test2", "2");
mail.addCategory("May");
mail.addCategory("2016");
mail.addCustomArg("campaign", "welcome");
mail.addCustomArg("weekday", "morning");
mail.setSendAt(1443636842);
ASMasm = newASM();
asm.setGroupId(99);
asm.setGroupsToDisplay(newint[]{4, 5, 6, 7, 8});
mail.setASM(asm);
// This must be a valid [batch ID](https://sendgrid.com/docs/API_Reference/SMTP_API/scheduling_parameters.html) to work
// mail.setBatchId("sendgrid_batch_id");
mail.setIpPoolId("23");
MailSettingsmailSettings = newMailSettings();
BccSettingsbccSettings = newBccSettings();
bccSettings.setEnable(true);
bccSettings.setEmail("test@example.com");
mailSettings.setBccSettings(bccSettings);
SettingsandBoxMode = newSetting();
sandBoxMode.setEnable(true);
mailSettings.setSandboxMode(sandBoxMode);
SettingbypassListManagement = newSetting();
bypassListManagement.setEnable(true);
mailSettings.setBypassListManagement(bypassListManagement);
// Note: Bypass Spam, Bounce, and Unsubscribe management cannot
// be combined with Bypass List Management
SettingbypassSpamManagement = newSetting();
bypassSpamManagement.setEnable(true);
mailSettings.setBypassSpamManagement(bypassSpamManagement);
SettingbypassBounceManagement = newSetting();
bypassBounceManagement.setEnable(true);
mailSettings.setBypassBounceManagement(bypassBounceManagement);
SettingbypassUnsubscribeManagement = newSetting();
bypassUnsubscribeManagement.setEnable(true);
mailSettings.setBypassUnsubscribeManagement(bypassUnsubscribeManagement);
FooterSettingfooterSetting = newFooterSetting();
footerSetting.setEnable(true);
footerSetting.setText("Footer Text");
footerSetting.setHtml("<html><body>Footer Text</body></html>");
mailSettings.setFooterSetting(footerSetting);
SpamCheckSettingspamCheckSetting = newSpamCheckSetting();
spamCheckSetting.setEnable(true);
spamCheckSetting.setSpamThreshold(1);
spamCheckSetting.setPostToUrl("https://spamcatcher.sendgrid.com");
mailSettings.setSpamCheckSetting(spamCheckSetting);
mail.setMailSettings(mailSettings);
TrackingSettingstrackingSettings = newTrackingSettings();
ClickTrackingSettingclickTrackingSetting = newClickTrackingSetting();
clickTrackingSetting.setEnable(true);
clickTrackingSetting.setEnableText(true);
trackingSettings.setClickTrackingSetting(clickTrackingSetting);
OpenTrackingSettingopenTrackingSetting = newOpenTrackingSetting();
openTrackingSetting.setEnable(true);
openTrackingSetting.setSubstitutionTag("Optional tag to replace with the open image in the body of the message");
trackingSettings.setOpenTrackingSetting(openTrackingSetting);
SubscriptionTrackingSettingsubscriptionTrackingSetting = newSubscriptionTrackingSetting();
subscriptionTrackingSetting.setEnable(true);
subscriptionTrackingSetting.setText("text to insert into the text/plain portion of the message");
subscriptionTrackingSetting.setHtml("<html><body>html to insert into the text/html portion of the message</body></html>");
subscriptionTrackingSetting.setSubstitutionTag("Optional tag to replace with the open image in the body of the message");
trackingSettings.setSubscriptionTrackingSetting(subscriptionTrackingSetting);
GoogleAnalyticsSettinggoogleAnalyticsSetting = newGoogleAnalyticsSetting();
googleAnalyticsSetting.setEnable(true);
googleAnalyticsSetting.setCampaignSource("some source");
googleAnalyticsSetting.setCampaignTerm("some term");
googleAnalyticsSetting.setCampaignContent("some content");
googleAnalyticsSetting.setCampaignName("some name");
googleAnalyticsSetting.setCampaignMedium("some medium");
trackingSettings.setGoogleAnalyticsSetting(googleAnalyticsSetting);
mail.setTrackingSettings(trackingSettings);
EmailreplyTo = newEmail();
replyTo.setName("Example User");
replyTo.setEmail("test@example.com");
mail.setReplyTo(replyTo);
returnmail;
}
// API V3 Dynamic Template implementation
publicstaticMailbuildDynamicTemplate() {
Mailmail = newMail();
EmailfromEmail = newEmail();
fromEmail.setName("Example User");
fromEmail.setEmail("test@example.com");
mail.setFrom(fromEmail);
mail.setTemplateId("d-c6dcf1f72bdd4beeb15a9aa6c72fcd2c");
Personalizationpersonalization = newPersonalization();
personalization.addDynamicTemplateData("name", "Example User");
personalization.addDynamicTemplateData("city", "Denver");
personalization.addTo(newEmail("test@example.com"));
mail.addPersonalization(personalization);
returnmail;
}
// Minimum required to send an email
publicstaticMailbuildHelloEmail() {
Emailfrom = newEmail("test@example.com");
Stringsubject = "Hello World from the Twilio SendGrid Java Library";
Emailto = newEmail("test@example.com");
Contentcontent = newContent("text/plain", "some text here");
// Note that when you use this constructor an initial personalization object
// is created for you. It can be accessed via
// mail.personalization.get(0) as it is a List object
Mailmail = newMail(from, subject, to, content);
Emailemail = newEmail("test2@example.com");
mail.personalization.get(0).addTo(email);
returnmail;
}
publicstaticvoidbaselineExample() throwsIOException {
finalMailhelloWorld = buildHelloEmail();
send(helloWorld);
}
publicstaticvoidkitchenSinkExample() throwsIOException {
finalMailkitchenSink = buildKitchenSink();
send(kitchenSink);
}
publicstaticvoiddynamicTemplateExample() throwsIOException {
finalMaildynamicTemplate = buildDynamicTemplate();
send(dynamicTemplate);
}
privatestaticvoidsend(finalMailmail) throwsIOException {
finalSendGridsg = newSendGrid(System.getenv("SENDGRID_API_KEY"));
sg.addRequestHeader("X-Mock", "true");
finalRequestrequest = newRequest();
request.setMethod(Method.POST);
request.setEndpoint("mail/send");
request.setBody(mail.build());
finalResponseresponse = sg.api(request);
System.out.println(response.getStatusCode());
System.out.println(response.getBody());
System.out.println(response.getHeaders());
}
publicstaticvoidmain(String[] args) throwsIOException {
baselineExample();
kitchenSinkExample();
dynamicTemplateExample();
}
}