ThymonA / NetCoreTemplate

My ASP .NET Core template for new projects
https://thymonarens.nl/
MIT License
1 stars 1 forks source link

Mailer :: Feature request #4

Open ghost opened 5 years ago

ghost commented 5 years ago

Hi @ThymonA,

Reset password and Register/create account requires a mailer to send out activation and reset password links.

Example configuration

"Smtp": {
    "Host": "host name",
    "Username": "mail-donotreply@example.com",
    "Password": "password",
    "Ssl": true,
    "Port": 587,
    "From": "mail-donotreply@example.com"
}

Check out this library https://github.com/jstedfast/MailKit

ghost commented 5 years ago

Hi @ThymonA,

How far are you with this feature request.