Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 1.39 KB

README.md

File metadata and controls

22 lines (12 loc) · 1.39 KB

Asp.Net Email Example

This project is an example used in an article demonstrating a basic approach to sending personalized emails to recipients selected from a list.

The Blog article to accompany this code can be found at Send Email to Selected Recipients from your ASP.NET MVC Web Application

Use Nuget Package Restore

You will need to enable Nuget Package Restore in Visual Studio in order to download and restore Nuget packages during build. If you are not sure how to do this, see Keep Nuget Packages Out of Source Control with Nuget Package Manager Restore

Run Entity Framework Migrations

You will also need to run Entity Framework Migrations Update-Database command per the article. The migration files are included in the repo, so you will NOT need to Enable-Migrations or run Add-Migration Init. You will likely want to edit the Admin user name and password in the seed method before doing this.