作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 sendgrid 中创建了电子邮件模板 - 具有可替换的值;
我从rabbitMQ队列获取用于处理电子邮件的JSON负载(包含替代值)。我的问题是如何从 Java 调用 sendgrid 电子邮件模板?
最佳答案
我找到了解决方案,通过sendgrid调用sendgrid模板和邮件的方法如下:
SendGrid sendGrid = new SendGrid("username","password"));
SendGrid.Email email = new SendGrid.Email();
//Fill the required fields of email
email.setTo(new String[] { "xyz_to@gmail.com"});
email.setFrom("xyz_from@gmail.com");
email.setSubject(" ");
email.setText(" ");
email.setHtml(" ");
// Substitute template ID
email.addFilter(
"templates",
"template_id",
"1231_1212_2323_3232");
//place holders in template, dynamically fill values in template
email.addSubstitution(
":firstName",
new String[] { firstName });
email.addSubstitution(
":lastName",
new String[] { lastName });
// send your email
Response response = sendGrid.send(email);
关于java - 创建了 sendgrid 电子邮件模板,如何从 Java 调用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31309215/
我是一名优秀的程序员,十分优秀!