Sending Email with Attachment using SendGrid Email Service

Introduction

This article will walk you through the creation of an ASP.NET Core MVC web application with C# language. It will also cover sending an email using the SendGrid Email Service.

Photo by austin

Photo by Austin Distel on Unsplash

In a modern web application, email notification or verification has now become a major and important part of the application. Using email service, we can ensure application user registration, password reset, mobile number verification, etc. This helps the verification process go smoothly, quickly, and securely. Newsletters, Promotion, and Shipping Notifications tasks can also be completed with email service as well. Therefore in any application, we can make sure to use email service.

In this article, I will explain how to send an email from the ASP.NET Core MVC web application using the Sendgrid email service. I will write a Sendgrid email service as well to show how to send an email using C# language and the Sendgrid Nuget package manager.

Prerequisites

Good knowledge of C# language, ASP.NET Core MVC application, and .NET CLI.

Background

Let’s move to this demonstration and create an ASP.NET Core MVC web application. Before moving to the practical demonstration, let’s understand the objective of this demonstration which tells what exactly will be covered in this article. Here is the objective as follows,

  1. Create a SendGrid account
  2. Get an API key from the created SendGrid account
  3. Create a project
  4. Code implementation
  5. Conclusion

Create a SendGrid account

Sendgrid is a cloud-based email service that ensures reliable email delivery, scalability, and real-time service analysis using the SendGrid application dashboard. SendGrid API helps in delivering your important emails over SMPT or HTTP.

You can create a free account from the Sendgrid website.

Send grid

After successfully creating the SendGrid account, you can create the SendGrid email service API key which is required in the application implementation.

SendGrid Dashboard

Create or get an API Key from here.

API keys

Plan and pricing

You can send 40,000 emails for the first 30 days, then 100/day forever. For more details, please visit the Sendgrid website, here.

Email API plans

Advantage of SendGrid

  1. 24-hour customer support
  2. Using the dashboard, you can track Spam Reports, mail bounced back and other features as well.
  3. You can set daily/monthly mailing functionality.
  4. If the server is down, you can put email service in queues.

Implementation

Let’s first create an ASP.NET Core MVC web Application from .NET Core CLI.

  • $ dotnet new sln -n SendGridDotNetCore
  • $ dotnet new mvc -n SendGridDotNetCore
  • $ dotnet sln SendGridDotNetCore.sln add SendGridDotNetCore/SendGridDotNetCore.csproj

API key and Email info

I put the API key and sent an email related to all the info to the ASP.NET resource file so that it can access and edit in real-time execution.

API key and email info

Build and Run

  • $ dotnet build
  • $ dotnet run
  • $ dotnet watch run

Publish and run

  • $ dotnet publish -o ./publish
  • $ dotnet AutoMapperDemo.dll

Here the application UI is showing the email delivery details status.

Send mail status

Email service interface

Startup

services.AddTransient<ISendGridEmailSender, SendGridEmailSender>();

Conclusion

Using SendGrid email service, C# nuget package manager, and ASP.NET Core MVC web application, we can now simply send an email from the application. Additionally, you can add an attachment to the email and the SendGrid email service will send it by attaching it in the email body as well!

Cheers!

Github Repo

https://github.com/csharplang/Sendgrid

Reference