我正在尝试向用户发送自动电子邮件以完成注册,我正在本地主机上测试我的应用
这是我的注册管理员:
// POST: /Account/Register
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Register(RegisterViewModel model)
{
if (ModelState.IsValid)
{
var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
var result = await UserManager.CreateAsync(user, model.Password);
if (result.Succeeded)
{
// Comment the following line to prevent log in until the user is confirmed.
// await SignInManager.SignInAsync(user, isPersistent:false, rememberBrowser:false);
// For more information on how to enable account confirmation and password reset please visit http://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>");
// Uncomment to debug locally
// TempData["ViewBagLink"] = callbackUrl;
ViewBag.Message = "Check your email and confirm your account, you must be confirmed "
+ "before you can log in.";
return View("Info");
//return RedirectToAction("Index", "Home");
}
AddErrors(result);
}
// If we got this far, something failed, redisplay form
return View(model);
}
这是我的电子邮件服务类
public class EmailService : IIdentityMessageService
{
public async Task SendAsync(IdentityMessage message)
{
// Create the email object first, then add the properties.
var myMessage = new SendGridMessage();
// this defines email and name of the sender
myMessage.From = new MailAddress("no-reply@example.info", "My Example Admin");
// set where we are sending the email
myMessage.AddTo(message.Destination);
myMessage.Subject = message.Subject;
// make sure all your messages are formatted as HTML
myMessage.Html = message.Body;
// Create credentials, specifying your SendGrid username and password.
var credentials = new NetworkCredential(
ConfigurationManager.AppSettings["SendGridLogin"],
ConfigurationManager.AppSettings["SendGridPassword"]
);
// Create an Web transport for sending email.
var transportWeb = new Web(credentials);
// Send the email.
await transportWeb.DeliverAsync(myMessage);
}
}
我正在使用SendGridSmtpApi 1.3.1&amp; SendGrid C#cilent library 6.3.4。 问题在哪里,为什么这不起作用?
答案 0 :(得分:1)
因为您正在进行异步调用,所以您的程序可能会在调用完成之前退出。因此,如果您希望在程序进行之前阻止呼叫完成,则必须执行以下操作:
transportWeb.DeliverAsync(message).Wait();
或者,你可以根据你想要的结果从调用函数“等待()或结果”。
有关详细信息,请查看以下内容: