gpt4 book ai didi

java - 创建了 sendgrid 电子邮件模板,如何从 Java 调用它

转载 作者:行者123 更新时间:2023-12-02 19:57:43 24 4
gpt4 key购买 nike

我在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com