Skip to content

Instantly share code, notes, and snippets.

@kevinrodriguez-io
Created June 12, 2018 07:10
Show Gist options
  • Save kevinrodriguez-io/861ce2ee12ea511c8bc52f4686efec42 to your computer and use it in GitHub Desktop.
Save kevinrodriguez-io/861ce2ee12ea511c8bc52f4686efec42 to your computer and use it in GitHub Desktop.
ASP.Net Core Identity UI 2.1 Smtp configuration on appsettings.json
{
"ConnectionStrings": {
"DefaultConnection": "Server=myHost\\SQLINSTANCE;Database=myDataBase;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"EmailSender": {
"Host": "smtp.yourprovider.com",
"Port": 587,
"EnableSSL": true,
"UserName": "your@username.com",
"Password": "Y0urP4ssw0rd!!!"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment