SendGrid:如何设置按钮的动态链接值

时间:2017-07-27 09:16:13

标签: java html button sendgrid substitution

我正在使用sendGrid向用户发送电子邮件验证邮件,当用户点击“验证”按钮时,它将被重定向到另一个链接,我已经成功发送了一封电子邮件,但我无法弄清楚我该怎么办?使按钮动态化?

我读到substitution并且不知道如何使用按钮 我在代码中添加了以下行

 email.addSubstitution(VERIFY_TOKEN_KEY, new String[] { token.getToken() });

这是我在SendGrid上的Button代码

<a style="background-color:#51a9a4;border:1px solid #333333;border-color:#333333;border-radius:6px;border-width:1px;color:#ffffff;display:inline-block;font-family:arial,helvetica,sans-serif;font-size:16px;font-weight:normal;letter-spacing:0px;line-height:16px;padding:12px 18px 12px 18px;text-align:center;text-decoration:none;"
  href="-verifyLink-" target="_blank">Verify</a>

我应该在href中写什么?

1 个答案:

答案 0 :(得分:0)

只需在href属性中放置{{variable}}。这样:验证。考虑到{{variable}}是您要接收的字段的名称。