-
Notifications
You must be signed in to change notification settings - Fork 409
/
Example.java
279 lines (242 loc) · 10.8 KB
/
Example.java
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
import com.sendgrid.Method;
import com.sendgrid.Request;
import com.sendgrid.Response;
import com.sendgrid.SendGrid;
import com.sendgrid.helpers.mail.Mail;
import com.sendgrid.helpers.mail.objects.*;
import java.io.IOException;
public class Example {
// Fully populated Mail object
public static Mail buildKitchenSink() {
Mail mail = new Mail();
Email fromEmail = new Email();
fromEmail.setName("Example User");
fromEmail.setEmail("test@example.com");
mail.setFrom(fromEmail);
mail.setSubject("Hello World from the Twilio SendGrid Java Library");
Personalization personalization = new Personalization();
Email to = new Email();
to.setName("Example User");
to.setEmail("test1@example.com");
personalization.addTo(to);
to.setName("Example User");
to.setEmail("test2@example.com");
personalization.addTo(to);
Email cc = new Email();
cc.setName("Example User");
cc.setEmail("test3@example.com");
personalization.addCc(cc);
cc.setName("Example User");
cc.setEmail("test4@example.com");
personalization.addCc(cc);
Email bcc = new Email();
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);
Personalization personalization2 = new Personalization();
Email to2 = new Email();
to2.setName("Example User");
to2.setEmail("test1@example.com");
personalization2.addTo(to2);
Email fromEmail2 = new Email();
fromEmail2.setName("Example User");
fromEmail2.setEmail("test2@example.com");
personalization2.setFrom(fromEmail2);
to2.setName("Example User");
to2.setEmail("test3@example.com");
personalization2.addTo(to2);
Email cc2 = new Email();
cc2.setName("Example User");
cc2.setEmail("test4@example.com");
personalization2.addCc(cc2);
cc2.setName("Example User");
cc2.setEmail("test5@example.com");
personalization2.addCc(cc2);
Email bcc2 = new Email();
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);
Content content = new Content();
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);
Attachments attachments = new Attachments();
attachments.setContent("TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdC4gQ3JhcyBwdW12");
attachments.setType("application/pdf");
attachments.setFilename("balance_001.pdf");
attachments.setDisposition("attachment");
attachments.setContentId("Balance Sheet");
mail.addAttachments(attachments);
Attachments attachments2 = new Attachments();
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);
ASM asm = new ASM();
asm.setGroupId(99);
asm.setGroupsToDisplay(new int[]{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");
MailSettings mailSettings = new MailSettings();
BccSettings bccSettings = new BccSettings();
bccSettings.setEnable(true);
bccSettings.setEmail("test@example.com");
mailSettings.setBccSettings(bccSettings);
Setting sandBoxMode = new Setting();
sandBoxMode.setEnable(true);
mailSettings.setSandboxMode(sandBoxMode);
Setting bypassListManagement = new Setting();
bypassListManagement.setEnable(true);
mailSettings.setBypassListManagement(bypassListManagement);
// Note: Bypass Spam, Bounce, and Unsubscribe management cannot
// be combined with Bypass List Management
Setting bypassSpamManagement = new Setting();
bypassSpamManagement.setEnable(true);
mailSettings.setBypassSpamManagement(bypassSpamManagement);
Setting bypassBounceManagement = new Setting();
bypassBounceManagement.setEnable(true);
mailSettings.setBypassBounceManagement(bypassBounceManagement);
Setting bypassUnsubscribeManagement = new Setting();
bypassUnsubscribeManagement.setEnable(true);
mailSettings.setBypassUnsubscribeManagement(bypassUnsubscribeManagement);
FooterSetting footerSetting = new FooterSetting();
footerSetting.setEnable(true);
footerSetting.setText("Footer Text");
footerSetting.setHtml("<html><body>Footer Text</body></html>");
mailSettings.setFooterSetting(footerSetting);
SpamCheckSetting spamCheckSetting = new SpamCheckSetting();
spamCheckSetting.setEnable(true);
spamCheckSetting.setSpamThreshold(1);
spamCheckSetting.setPostToUrl("https://spamcatcher.sendgrid.com");
mailSettings.setSpamCheckSetting(spamCheckSetting);
mail.setMailSettings(mailSettings);
TrackingSettings trackingSettings = new TrackingSettings();
ClickTrackingSetting clickTrackingSetting = new ClickTrackingSetting();
clickTrackingSetting.setEnable(true);
clickTrackingSetting.setEnableText(true);
trackingSettings.setClickTrackingSetting(clickTrackingSetting);
OpenTrackingSetting openTrackingSetting = new OpenTrackingSetting();
openTrackingSetting.setEnable(true);
openTrackingSetting.setSubstitutionTag("Optional tag to replace with the open image in the body of the message");
trackingSettings.setOpenTrackingSetting(openTrackingSetting);
SubscriptionTrackingSetting subscriptionTrackingSetting = new SubscriptionTrackingSetting();
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);
GoogleAnalyticsSetting googleAnalyticsSetting = new GoogleAnalyticsSetting();
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);
Email replyTo = new Email();
replyTo.setName("Example User");
replyTo.setEmail("test@example.com");
mail.setReplyTo(replyTo);
return mail;
}
// API V3 Dynamic Template implementation
public static Mail buildDynamicTemplate() {
Mail mail = new Mail();
Email fromEmail = new Email();
fromEmail.setName("Example User");
fromEmail.setEmail("test@example.com");
mail.setFrom(fromEmail);
mail.setTemplateId("d-c6dcf1f72bdd4beeb15a9aa6c72fcd2c");
Personalization personalization = new Personalization();
personalization.addDynamicTemplateData("name", "Example User");
personalization.addDynamicTemplateData("city", "Denver");
personalization.addTo(new Email("test@example.com"));
mail.addPersonalization(personalization);
return mail;
}
// Minimum required to send an email
public static Mail buildHelloEmail() {
Email from = new Email("test@example.com");
String subject = "Hello World from the Twilio SendGrid Java Library";
Email to = new Email("test@example.com");
Content content = new Content("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
Mail mail = new Mail(from, subject, to, content);
Email email = new Email("test2@example.com");
mail.personalization.get(0).addTo(email);
return mail;
}
public static void baselineExample() throws IOException {
final Mail helloWorld = buildHelloEmail();
send(helloWorld);
}
public static void kitchenSinkExample() throws IOException {
final Mail kitchenSink = buildKitchenSink();
send(kitchenSink);
}
public static void dynamicTemplateExample() throws IOException {
final Mail dynamicTemplate = buildDynamicTemplate();
send(dynamicTemplate);
}
private static void send(final Mail mail) throws IOException {
final SendGrid sg = new SendGrid(System.getenv("SENDGRID_API_KEY"));
sg.addRequestHeader("X-Mock", "true");
final Request request = new Request();
request.setMethod(Method.POST);
request.setEndpoint("mail/send");
request.setBody(mail.build());
final Response response = sg.api(request);
System.out.println(response.getStatusCode());
System.out.println(response.getBody());
System.out.println(response.getHeaders());
}
public static void main(String[] args) throws IOException {
baselineExample();
kitchenSinkExample();
dynamicTemplateExample();
}
}