gpt4 book ai didi

c# - 使用 SendGrid v3 的身份将交易模板作为确认电子邮件发送

转载 作者:太空宇宙 更新时间:2023-11-03 22:50:24 25 4
gpt4 key购买 nike

我是 asp.net mvc Identity 和 SendGrid 的新手,但我真的很想使用它们的功能。

我想让用户使用身份注册表进行注册,然后使用 SendGrid v3 发送一个模板(内置在我的 SendGrid 帐户中)作为帐户注册确认电子邮件。我已经创建了一个交易模板并拥有一个 Api key 。

我在身份中启用了电子邮件确认:

await SignInManager.SignInAsync(user, isPersistent: false, rememberBrowser: false);

// For more information on how to enable account confirmation and password reset please visit https://go.microsoft.com/fwlink/?LinkID=320771
// Send an email with this link
string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");

return RedirectToAction("Index", "Home");

然后我在我的 web.config 的应用程序设置中设置了我的 sendGrid apiKey 和帐户凭据,以便我可以在我的代码中使用它们。

<appSettings>
<add key="SendGridUsername" value="xxxxxxx" />
<add key="SendGridPassword" value="xxxxxxx" />
<add key="SendGridApiKey" value="xxxxxxxxxxxxxxxxxxxxxxxx" />
</appSettings>

我已经在 IdentityConfig.cs 中将其添加到我的 EmailService,但我不知道从哪里开始:

public class EmailService : IIdentityMessageService
{
public async Task SendAsync(IdentityMessage message)
{
// Plug in your email service here to send an email.
var apiKey = WebConfigurationManager.AppSettings["SendGridApiKey"];
var client = new SendGridClient(apiKey);
var from = new EmailAddress("me@us.com", "Me");
var subject = message.Subject;
var to = new EmailAddress(message.Destination);
var email = MailHelper.CreateSingleEmail(from, to, subject, "", message.Body);
await client.SendEmailAsync(email);
}
}

我也阅读了以下内容,但无法理解在哪里实现:

https://sendgrid.com/docs/API_Reference/Web_API_v3/Transactional_Templates/smtpapi.html

{
"filters": {
"templates": {
"settings": {
"enable": 1,
"template_id": "5997fcf6-2b9f-484d-acd5-7e9a99f0dc1f"
}
}
}
}

任何关于这方面的帮助都会很棒,因为我只是不确定从这里去哪里。

谢谢

最佳答案

您可以使用以下代码在您的电子邮件中发送交易模板:

        var apiKey = AppConstants.JuketserSendGridKey;
var client = new SendGridClient(apiKey);

var msg = new SendGridMessage();
msg.SetFrom(new EmailAddress("admin@jukester.com", "Jukester"));
//msg.SetSubject("I'm replacing the subject tag");
msg.AddTo(new EmailAddress(model.EmailTo));
//msg.AddContent(MimeType.Text, "I'm replacing the <strong>body tag</strong>");
msg.SetTemplateId("Your TemplateId here");

var response = await client.SendEmailAsync(msg);
var status = response.StatusCode.ToString();

Edit For Your Other question:

对于电子邮件确认场景,您必须在用户注册时向注册的电子邮件发送电子邮件。创建验证 token 并将其保存在数据库中。该电子邮件将包含一些链接或按钮。此链接或按钮将带有该验证 token 。一旦用户点击该链接/按钮,将在项目中调用 webapi 或操作方法,在那里您将验证验证码,然后更新数据库中 EmailConfirmed 的状态。

以下是我完成的一些代码片段,它们可能对你有帮助。

以下代码创建验证码并更新数据库中的用户记录。

var encryptedToken = Utility.Crypt(user.Email);
var updateStatus = await UpdateVerificationCode(userToAdd, encryptedToken);

下面再将这个验证码传给邮件中需要发送的数据。 “paramList”是一个数据列表。

if (updateStatus)
{
paramList.Add(encryptedToken);
var emailModel = Utility.CreateEmailModel(user.Email, paramList, AppConstants.RegistrationTemplateId, (int)EmailType.Register);
await Helper.SendEmail(emailModel);

}

现在,此代码将附加在发送给用户的电子邮件中的链接或按钮中,以进行电子邮件验证。当用户单击该链接/按钮时,将调用以下用于电子邮件验证的 Web API 操作方法。

public async Task<GenericResponse> ConfirmEmail(SetPasswordBindingModel model)
{
var response = new GenericResponse();
if (model != null)
{
try
{
var user = await _aspNetUserService.GetByEmail(model.Email);
if (user != null)
{
if (!string.IsNullOrEmpty(model.VerificationCode))
{
//if time difference is less than 5 minutes then proceed
var originalKey = Utility.Decrypt(model.VerificationCode);
if (user.Email == originalKey)
{
var emailConfirmationCode = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
var result = await UserManager.ConfirmEmailAsync(user.Id, emailConfirmationCode);
if (result.Succeeded)
{
var status = await _aspNetUserService.ResetVerificationCode(model.Email);
if (status)
{
response.Message = AppConstants.EmailConfirmed;
response.IsSuccess = true;
}
}
else
{
response.Message = AppConstants.Error;
response.IsSuccess = false;
}
}
else
{
response.Message = AppConstants.InvalidVerificationCode;
response.IsSuccess = false;
}
}
else
{
response.Message = AppConstants.InvalidVerificationCode;
response.IsSuccess = false;
}
}
else
{
response.Message = AppConstants.NoUserFound;
response.IsSuccess = false;
}
}
catch (Exception ex)
{
//response.Message = AppConstants.Error;
response.Message = ex.Message;
}

}
return response;
}

您可以看看它,如果它对您的需求有帮助,请使用它。谢谢

关于c# - 使用 SendGrid v3 的身份将交易模板作为确认电子邮件发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47636507/

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