Aru*_*E S 5 c# email asp.net-core asp.net-core-identity
我不知道如何调用该SendEmailAsync
函数
注册帖子页面
public async Task<IActionResult> Register(RegisterViewModel model, string returnUrl = null)
{
ViewData["ReturnUrl"] = returnUrl;
if (ModelState.IsValid)
{
var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
var result = await _userManager.CreateAsync(user, model.Password);
if (result.Succeeded)
{
// For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=532713
// Send an email with this link
var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: HttpContext.Request.Scheme);
await _emailSender.SendEmailAsync(model.Email, "Confirm your account",
$"Please confirm your account by clicking this link: <a href='{callbackUrl}'>link</a>");
await _signInManager.SignInAsync(user, isPersistent: false);
_logger.LogInformation(3, "User created a new account with password.");
return RedirectToLocal(returnUrl);
}
AddErrors(result);
}
// If we got this far, something failed, redisplay form
return View(model);
}
Run Code Online (Sandbox Code Playgroud)
电子邮件配置
//此代码已存在
public interface IEmailSender
{
Task SendEmailAsync(string email, string subject, string message);
}
Run Code Online (Sandbox Code Playgroud)
//我从其他网站获得此代码 我不知道如何一起使用它.
public class sendMail : IEmailSender // this line is written by me
{
public async Task SendEmailAsync(string email, string subject, string message)
{
var emailMessage = new MimeMessage();
emailMessage.From.Add(new MailboxAddress("Joe Bloggs", "jbloggs@example.com"));
emailMessage.To.Add(new MailboxAddress("", email));
emailMessage.Subject = subject;
emailMessage.Body = new TextPart("plain") { Text = message };
using (var client = new SmtpClient())
{
client.LocalDomain = "some.domain.com";
await client.ConnectAsync("smtp.relay.uri", 25, SecureSocketOptions.None).ConfigureAwait(false);
await client.SendAsync(emailMessage).ConfigureAwait(false);
await client.DisconnectAsync(true).ConfigureAwait(false);
}
}
}
Run Code Online (Sandbox Code Playgroud)
如何编写类定义来发送电子邮件.
断点没有到达这里,我认为我的实现存在一些问题.
在启动中确保更改此设置:
services.AddTransient<IEmailSender, AuthMessageSender>();
Run Code Online (Sandbox Code Playgroud)
到
services.AddTransient<IEmailSender, sendMail>();
Run Code Online (Sandbox Code Playgroud)
这样你的实现就会被注入
归档时间: |
|
查看次数: |
2680 次 |
最近记录: |