使用AWS Java Api(SES),我有以下代码
@Test
@DisplayName("send custom verification email")
void sendCustomVerificationEmail() {
SendCustomVerificationEmailRequest sendCustomVerificationEmailRequest = new SendCustomVerificationEmailRequest();
sendCustomVerificationEmailRequest.setEmailAddress("contact@company.com");
sendCustomVerificationEmailRequest.setTemplateName("MyMailTemplate");
SendCustomVerificationEmailResult sendCustomVerificationEmailResult = amazonSimpleEmailService.sendCustomVerificationEmail(sendCustomVerificationEmailRequest);
System.out.println(sendCustomVerificationEmailResult.getMessageId());
}
我收到了验证邮件,我可以点击链接然后更改电子邮件的状态(待定 - >成功)。
我的问题是,如何使用我的用户请求跟踪我的验证请求,因为我无法使用令牌更改电子邮件正文,或获取验证请求的令牌。
通过跟踪,我可以信任我发送带有经过验证的电子邮件地址的邮件,并且可以信任该令牌以发送带有跟踪电子邮件地址的邮件。