Skip to content

Commit

Permalink
SMTP
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAldoshin committed Jan 6, 2019
1 parent 2c1ae24 commit d0c718c
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 7 deletions.
22 changes: 20 additions & 2 deletions WebIoT/App_Start/IdentityConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Net.Mail;
using System.Security.Claims;
using System.Threading.Tasks;
using System.Web;
Expand All @@ -18,8 +19,25 @@ public class EmailService : IIdentityMessageService
{
public Task SendAsync(IdentityMessage message)
{
// Подключите здесь службу электронной почты для отправки сообщения электронной почты.
return Task.FromResult(0);
// настройка логина, пароля отправителя
var from = "[email protected]";
var pass = "QWopAS12";

// адрес и порт smtp-сервера, с которого мы и будем отправлять письмо
SmtpClient client = new SmtpClient("localhost", 25);

client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.UseDefaultCredentials = false;
client.Credentials = new System.Net.NetworkCredential(from, pass);
//client.EnableSsl = true;


// создаем письмо: message.Destination - адрес получателя
var mail = new MailMessage(from, message.Destination);
mail.Subject = message.Subject;
mail.Body = message.Body;
mail.IsBodyHtml = true;
return client.SendMailAsync(mail);
}
}

Expand Down
9 changes: 5 additions & 4 deletions WebIoT/Controllers/AccountController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,12 @@ public async Task<ActionResult> Register(RegisterViewModel model)

// Дополнительные сведения о включении подтверждения учетной записи и сброса пароля см. на странице https://go.microsoft.com/fwlink/?LinkID=320771.
// Отправка сообщения электронной почты с этой ссылкой
// 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, "Подтверждение учетной записи", "Подтвердите вашу учетную запись, щелкнув <a href=\"" + callbackUrl + "\">здесь</a>");
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, "Подтверждение учетной записи", "Подтвердите вашу учетную запись, щелкнув <a href=\"" + callbackUrl + "\">здесь</a>");

return RedirectToAction("Index", "Home");
//return RedirectToAction("Index", "Home");
return View("DisplayEmail");
}
AddErrors(result);
}
Expand Down
7 changes: 7 additions & 0 deletions WebIoT/Views/Account/DisplayEmail.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@{
ViewBag.Title = "Завершение регистрации";
}

<h2>@ViewBag.Title</h2>

<p>На указанный электронный адрес отправлены дальнейшие инструкции по завершению регистрации</p>
2 changes: 1 addition & 1 deletion WebIoT/Views/Account/Register.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" class="btn btn-default" value="Регистрация" />
<button type="submit" class="btn btn-primary">Регистрация</button>
</div>
</div>
}
Expand Down
1 change: 1 addition & 0 deletions WebIoT/WebIoT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@
<Content Include="Scripts\popper.js.map" />
<Content Include="Scripts\popper-utils.min.js.map" />
<Content Include="Scripts\popper-utils.js.map" />
<Content Include="Views\Account\DisplayEmail.cshtml" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
Expand Down

0 comments on commit d0c718c

Please sign in to comment.