Blog Website
1.0.0
is written as a Practice in .Net And HCI school project Blog Website is simple, beautiful, light-weight blog written in .NET Core. This cross-platform, highly extendable and customizable web application brings all the best blogging features in small, portable package
for new subscribers to get notification through Email you can integrate the Application with send Grid. It is one of the cloud email providers recommended for ASP.NET Core. It is free for under 100 daily emails and has paid options if someone needs more.
To use SendGrid, blogger would need to sign up for service and get API key. Once you have API key, all that required is to update appsettings.json:
{
"Blog-Website": {
"SendGridApiKey": "YOUR-SENDGRID-API-KEY",
"SendGridEmailFrom": "[email protected]",
"SendGridEmailFromName": "Blog admin"
}
}