Get email alerts from serverless Azure functions using SendGrid

Overview

I recently posted a tutorial on how to better manage and maintain the lifecycle of Azure resources, automating resource decommissions by using a simple Decommission tag with a date value, and an Azure serverless Function App. The tu…



Overview

I recently posted a tutorial on how to better manage and maintain the lifecycle of Azure resources, automating resource decommissions by using a simple Decommission tag with a date value, and an Azure serverless Function App. The tutorial also includes how to track successful and failed decommissions using the function apps own storage account by recording the decommission events into table storage.

The full tutorial can be found here:

This brings me to this new tutorial I want to share with you today. I was thinking how we can even better the process by also getting an email alert when a resource has been decommissioned or if a decommission has failed, and perhaps including the error message in the alert if it was a failed decommission. So today I will share with you a general guide on how we can utilize a service in Azure called SendGrid to send us email notifications from an Azure Function App.

This tutorial is only a general guide on how to utilize the SendGrid service inside of a Function App to send notification emails and does not follow on my previous tutorial. This guide is meant to serve as a supplement to show how to set up the SendGrid service and utilize the service in any Powershell based Function App in any environment, giving the ability to send email notifications to relevant stakeholders.

Feel free to integrate the steps in this tutorial in addition to my previous blog post mentioned above, if you have the additional requirement to be notified by email about resource decommissions. Let’s get started.



What is SendGrid?

SendGrid is a third party provider in Azure that provides a cloud-based email service. The service manages various types of email including shipping notifications, friend requests, sign-up confirmations, and email newsletters. It also handles internet service provider (ISP) monitoring, domain keys, sender policy framework (SPF), and feedback loops. Additionally provides link tracking, open rate reporting. It also allows companies to track email opens, unsubscribes, bounces, and spam reports.

Azure offers a variety of SendGrid pricing plans. For the purpose of our use case and this tutorial we will create and use the FREE plan which gives us access to the API and also 100 emails/day forever.

image.png



Steps to set up

We are going to need to perform the following steps:

  1. Create Azure resources: (Optional) We will first create a Resource Group, PowerShell based Function App and KeyVault. This step is optional only for this demo/tutorial.
  2. Create a SendGrid account: We will create a FREE SendGrid account, activate the account and create a sender identity.
  3. Generate a SendGrid API Key: We will generate an API Key, store this key in the key vault and consume it in our PowerShell function to authenticate to the SendGrid service.
  4. Create a SendGrid API PowerShell Function: We will create a PowerShell function to interact with the SendGrid API and service to send an email notification.
  5. Integrate PowerShell Function into Function App: We will integrate our PowerShell function into our Function App and test.



1. Create Azure resources

To set up the function app I wrote a PowerShell script using AZ CLI, that would build and configure the function app to use as a demo for this tutorial. There was one manual step however I will cover a bit later on. You can find the script I used on my github code page called Azure-Pre-Reqs.ps1.

First we will log into Azure by running:

az login

After logging into Azure and selecting the subscription, we can run the script that will create the function app resources and set the environment up:

## code/Azure-Pre-Reqs.ps1

#Log into Azure
#az login

# Setup Variables.
$randomInt = Get-Random -Maximum 9999
$subscriptionId = (get-azcontext).Subscription.Id
$resourceGroupName = "SendGrid-Function-App-Demo"
$storageName = "sgridfuncsa$randomInt"
$functionAppName = "sgridfunc$randomInt"
$kvName = "sgridfunkv$randomInt"
$region = "uksouth"

# Create a resource resourceGroupName
az group create --name "$resourceGroupName" --location "$region"

# Create a Key Vault
az keyvault create `
    --name "$kvName" `
    --resource-group "$resourceGroupName" `
    --location "$region" `
    --enable-rbac-authorization

# Authorize the operation to create a few secrets - Signed in User (Key Vault Secrets Officer)
az ad signed-in-user show --query objectId -o tsv | foreach-object {
    az role assignment create `
        --role "Key Vault Secrets Officer" `
        --assignee "$_" `
        --scope "/subscriptions/$subscriptionId/resourceGroups/$resourceGroupName/providers/Microsoft.KeyVault/vaults/$kvName"
    }

# Create an azure storage account for function app
az storage account create `
    --name "$storageName" `
    --location "$region" `
    --resource-group "$resourceGroupName" `
    --sku "Standard_LRS" `
    --kind "StorageV2" `
    --https-only true `
    --min-tls-version "TLS1_2"

# Create a Function App
az functionapp create `
    --name "$functionAppName" `
    --storage-account "$storageName" `
    --consumption-plan-location "$region" `
    --resource-group "$resourceGroupName" `
    --os-type "Windows" `
    --runtime "powershell" `
    --runtime-version "7.0" `
    --functions-version "3" `
    --assign-identity

# Set Key Vault Secrets (secret values are set to 'xxxx', we will update these later after creating SendGrid account)
Start-Sleep -s 15
az keyvault secret set --vault-name "$kvName" --name "sendGridApiKey" --value "xxxx"
az keyvault secret set --vault-name "$kvName" --name "fromAddress" --value "xxxx"

#Configure Function App environment variables:
$settings = @(
  # @Microsoft.KeyVault(SecretUri=https://<key-vault-name>.vault.azure.net/secrets/<secret-name>/<secret-version>)
  # or @Microsoft.KeyVault(SecretUri=https://<key-vault-name>.vault.azure.net/secrets/<secret-name>/) '/' at end means to take latest secret
  "sendGridApiKey=@Microsoft.KeyVault(SecretUri=https://$kvName.vault.azure.net/secrets/sendGridApiKey/)" #from KV
  "fromAddress=@Microsoft.KeyVault(SecretUri=https://$kvName.vault.azure.net/secrets/fromAddress/)" #from KV
)

$settings | foreach-object {
    az functionapp config appsettings set --name "$functionAppName" --resource-group "$resourceGroupName" --settings """$_"""
}

#Assign Function System MI permissions to KV to access secrets
$functionMI = $(az resource list --name $functionAppName --query [*].identity.principalId --out tsv)| foreach-object {
    az role assignment create `
        --role "Key Vault Secrets User" `
        --assignee "$_" `
        --scope "/subscriptions/$subscriptionId/resourceGroups/$resourceGroupName/providers/Microsoft.KeyVault/vaults/$kvName"
    }

Lets take a closer look, step-by-step what the above script does as part of setting up the function app environment.

  1. Create a resource group called SendGrid-Function-App-Demo. image.png
  2. Create a PowerShell Function App with SystemAssigned managed identity, consumption app service plan, insights, a key vault and function app storage account. image.png image.png
  3. Configure Function App environment variables. (Will be consumed inside of function app later). image.png

NOTE: You will see that we are referencing the fromAddress and sendGridApiKey from our key vault.

  1. Assign Function App SystemAssigned managed identity permissions to access/read secrets on the key vault. image.png
  2. Create two dummy key vault secrets called fromAddress and sendGridApiKey which we will update later. image.png
  3. Remember I mentioned earlier there is one manual step. In the next step we will change the requirements.psd1 file on our function to allow the AZ module inside of our function by uncommenting the following:
# This file enables modules to be automatically managed by the Functions service.
# See https://aka.ms/functionsmanageddependency for additional information.
#
@{
    # For latest supported version, go to 'https://www.powershellgallery.com/packages/Az'.
    # To use the Az module in your function app, please uncomment the line below.
    'Az' = '7.*'
}

image.png

NOTE: Remember to save the manual change we made on requirements.psd1 above.



2. Create a SendGrid account

Next we will create a SendGrid Account. Go to the Azure Portal and search services for SendGrid and create an account. We will use the Free account as mentioned earlier.

image.png

You will need to provide contact details such as your email address and phone number as SendGrid is a SaaS service subscription. Shortly after creating the SendGrid Azure resource you will receive an activation email on the email address you have provided at creation time.

image.png

After activation you can navigate to the SendGrid publisher’s site directly from Azure.

image.png

From the dashboard we will proceed to create the Sender Identity.

image.png

Note: For the From Email Address, sender verification is required. If the email domain doesn’t match one of your authenticated domains, you’ll need to verify ownership of the email address before using it as a sender.



3. Generate a SendGrid API Key

Next we will create an API key. Navigate to Settings -> API Keys and click on Create API key.

image.png

Give the API Key a Name, then select Full Access and then click on Create & View.

image.png

The API key will only be displayed once, so make sure that you copy the key and navigate back to the key vault that we created in the previous step and save the key under the key vault secret called sendGridApiKey.

Additionally also update the fromAddress secret in the key vault with the sender identity From Email Address that you have verified in the previous step.

image.png



4. Create a SendGrid API PowerShell Function

The following function can also be found on my github code page called SendGrid-Notification.ps1

It is a simple PowerShell function to send an email via the SendGrid API and service we created in an earlier step.

## code/SendGrid-Notification.ps1

Function SendGrid-Notification {
    [CmdletBinding(SupportsShouldProcess)]
    Param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$ToAddress,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$FromAddress,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$Subject,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$Body,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$APIKey
    )

    # Body
    $SendGridBody = @{
        "personalizations" = @(
            @{
                "to"      = @(
                    @{
                        "email" = $ToAddress
                    }
                )
                "subject" = $Subject
            }
        )

        "content"          = @(
            @{
                "type"  = "text/html"
                "value" = $Body
            }
        )

        "from"             = @{
            "email" = $FromAddress
        }
    }

    $BodyJson = $SendGridBody | ConvertTo-Json -Depth 4

    #Header for SendGrid API
    $Header = @{
        "authorization" = "Bearer $APIKey"
    }

    #Send the email through SendGrid API
    $Parameters = @{
        Method      = "POST"
        Uri         = "https://api.sendgrid.com/v3/mail/send"
        Headers     = $Header
        ContentType = "application/json"
        Body        = $BodyJson
    }
    Invoke-RestMethod @Parameters
}



5. Integrate PowerShell Function into Function App

The following function app code can also be found under my github code page called run.ps1.

  1. Navigate to the function app we created previously and select + Create under Functions. image.png
  2. Select Develop in portal and for the template select Timer trigger, name the function SendGrid-Demo, set the cron schedule to run on the frequency you need (in my case I have set this to once a day at 23:00pm) 0 0 23 * * *, and hit Create. image.png
  3. Navigate to Code + Test and replace all the code under run.ps1 with the following powershell code and hit save: image.png
## code/run.ps1

# Input bindings are passed in via param block.
param($Timer)

# Get the current universal time in the default string format.
$currentUTCtime = (Get-Date).ToUniversalTime()

# The 'IsPastDue' property is 'true' when the current function invocation is later than scheduled.
if ($Timer.IsPastDue) {
    Write-Host "PowerShell timer is running late!"
}

# SendGrid-Notification Function #
Function SendGrid-Notification {
    [CmdletBinding(SupportsShouldProcess)]
    Param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$ToAddress,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$FromAddress,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$Subject,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$Body,
        [Parameter(Mandatory, ValueFromPipeline)]
        [String]$APIKey
    )

    # Body
    $SendGridBody = @{
        "personalizations" = @(
            @{
                "to"      = @(
                    @{
                        "email" = $ToAddress
                    }
                )
                "subject" = $Subject
            }
        )

        "content"          = @(
            @{
                "type"  = "text/html"
                "value" = $Body
            }
        )

        "from"             = @{
            "email" = $FromAddress
        }
    }

    $BodyJson = $SendGridBody | ConvertTo-Json -Depth 4

    #Header for SendGrid API
    $Header = @{
        "authorization" = "Bearer $APIKey"
    }

    #Send the email through SendGrid API
    $Parameters = @{
        Method      = "POST"
        Uri         = "https://api.sendgrid.com/v3/mail/send"
        Headers     = $Header
        ContentType = "application/json"
        Body        = $BodyJson
    }
    Invoke-RestMethod @Parameters
}

# Set these environment variables up in Function App settings:
# These variables are from the Function App and is referenced from Key Vault
$apiKey = $env:sendGridApiKey #SendGrid API Key
$from = $env:fromAddress #SendGrid Sender Address

#Set additional Function variables
$to = "recipient@domain.com"
$subscriptionName = (get-azcontext).Subscription.name
$subscriptionId = (get-azcontext).Subscription.Id

Write-Error "This is a forced error, something has failed, Please investigate xxxx"
$failureMessage = $error[0].Exception.message.ToString()

$body = "$failureMessage - Subscription Details: [Name: $subscriptionName; Id: $subscriptionId]"

$Parameters = @{
    ToAddress   = $to
    FromAddress = $from
    Subject     = "Error notification from Azure Function App via SendGrid API"
    Body        = $body
    APIKey      = $apiKey
}
SendGrid-Notification @Parameters

Lets take a closer look at what this code actually does. In the first few lines we can see that the function app will take an input parameter called $Timer. This parameter is linked to the cron timer we set when we created the function app earlier.

image.png

Next we are loading the Powershell function we created to allow us to send notifications via the SendGrid service API.

image.png

Next we set up some variables, create a forced error and then send that error in an email alert to a recipient address via the SendGrid service API.

image.png

NOTE: Note that the apiKey and from address on line73 and line74 are actually referenced from environment variables, which are the application settings of the Function App which is referenced by the Key Vault secrets we set up earlier.

image.png



Testing the Function

Lets run and test our Function app and see if we get an email alert via the SendGrid service. Navigate to the Function app and select the function we created earlier. Select Code + Test followed by Test/Run and then click on Run.

image.png

A few seconds later you should see the email notification that was triggered by the Function App and sent via the SendGrid service API:

image.png

I hope you have enjoyed this post and have learned something new. You can also find the code samples used in this blog post on my Github page. ❤️



Author

Like, share, follow me on: 🐙 GitHub | 🐧 Twitter | 👾 LinkedIn

.ltag__user__id__620034 .follow-action-button {
background-color: #0cbb58 !important;
color: #000000 !important;
border-color: #0cbb58 !important;
}

pwd9000 image


Print Share Comment Cite Upload Translate
APA
Marcel.L | Sciencx (2024-03-28T13:51:51+00:00) » Get email alerts from serverless Azure functions using SendGrid. Retrieved from https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/.
MLA
" » Get email alerts from serverless Azure functions using SendGrid." Marcel.L | Sciencx - Friday January 7, 2022, https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/
HARVARD
Marcel.L | Sciencx Friday January 7, 2022 » Get email alerts from serverless Azure functions using SendGrid., viewed 2024-03-28T13:51:51+00:00,<https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/>
VANCOUVER
Marcel.L | Sciencx - » Get email alerts from serverless Azure functions using SendGrid. [Internet]. [Accessed 2024-03-28T13:51:51+00:00]. Available from: https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/
CHICAGO
" » Get email alerts from serverless Azure functions using SendGrid." Marcel.L | Sciencx - Accessed 2024-03-28T13:51:51+00:00. https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/
IEEE
" » Get email alerts from serverless Azure functions using SendGrid." Marcel.L | Sciencx [Online]. Available: https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/. [Accessed: 2024-03-28T13:51:51+00:00]
rf:citation
» Get email alerts from serverless Azure functions using SendGrid | Marcel.L | Sciencx | https://www.scien.cx/2022/01/07/get-email-alerts-from-serverless-azure-functions-using-sendgrid/ | 2024-03-28T13:51:51+00:00
https://github.com/addpipe/simple-recorderjs-demo