title | description | services | documentationcenter | author | manager | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|
How to use SendGrid in Azure Functions | Microsoft Docs |
Shows how to use SendGrid in Azure Functions |
functions |
na |
rachelappel |
cfowler |
functions |
multiple |
article |
multiple |
na |
01/31/2017 |
rachelap |
Azure Functions supports SendGrid output bindings to enable your functions to send email messages with a few lines of code and a SendGrid account.
To use the SendGrid API in an Azure Function, you must have a SendGrid account. Additionally, you must have a SendGrid API Key. Log in to your SendGrid account and click Settings then API Key to generate an API key. Keep this key available as you use it in an upcoming step.
You are now ready to create an Azure Function app.
Azure Function Apps are containers for one or more Azure functions. Azure functions are just that - a function. Each Azure function is tied to one trigger, which is an event that causes the function to run. Each function can contain any number of input or output bindings. Bindings are services that you can use in a function. SendGrid is an output binding you can use to send email.
- Log in to the Azure portal and create an Azure Function App or open an existing Function app.
- Create an Azure function. To keep it simple, choose a manual trigger and C#.
You must store your SendGrid API Key as an app setting to use it in a function. The ApiKey field is not your actual SendGrid API key, but an app setting you define that represents your actual API key. Storing your key this way is for security, since it is separate from any code or files that might be checked into source code control.
- Create an AppSettings key in your function app's Application Settings.
SendGrid is available as an Azure function output binding. To create a SendGrid output binding:
- Go to the Integrate tab of the function in the Azure portal.
- Click New Output to create a SendGrid output binding.
- Fill in the API Key and Message parameter name properties. If you want, you can enter the other properties now, or code them instead. These settings can be used as defaults.
Adding a binding to a function creates a file called function.json in your function's folder. This file contains all the same information that you see in the Azure function's Integrate tab, but in Json format. Setting the ApiKey, message, and from fields create the following entries in the function.json file:
{
"bindings": [
{
"type": "sendGrid",
"name": "message",
"apiKey": "SendGridKey",
"direction": "out",
"from": "[email protected]"
}
],
"disabled": false
}
If you prefer, you may modify this file yourself directly.
Now that you have created and configured the Function App and function, you can write the code to send an email.
The SendGrid API contains all the commands you need to create and send an email.
- Replace the code in the function with the following code:
#r "SendGrid"
using System;
using SendGrid.Helpers.Mail;
public static void Run(TraceWriter log, string input, out Mail message)
{
message = new Mail
{
Subject = "Azure news"
};
var personalization = new Personalization();
// change to email of recipient
personalization.AddTo(new Email("[email protected]"));
Content content = new Content
{
Type = "text/plain",
Value = input
};
message.AddContent(content);
message.AddPersonalization(personalization);
}
Notice the first line contains the #r
directive that references the SendGrid assembly. After that, you can use a using
statement to more easily access the objects in that namespace.
In the code, create instances of Mail
, Personalization
, and Content
objects from the SendGrid API that compose the email. When you return the message, SendGrid delivers it.
The function's signature also contains an extra out parameter of type Mail
named message
. Both input and output bindings express themselves as function parameters in code.
- Test your code by clicking Test and entering a message into the Request body field, then clicking the Run button.
- Check email to verify that SendGrid sent the email. It should go to the address in the code from step 1, and contain the message from the Request body.
This article has demonstrated how to use the SendGrid service to create and send email. To learn more about using Azure Functions in your apps, see the following topics:
-
Best practices for Azure Functions Lists some best practices to use when creating Azure Functions.
-
Azure Functions developer reference Programmer reference for coding functions and defining triggers and bindings.
-
Testing Azure Functions Describes various tools and techniques for testing your functions.