Use the digest functionality to send email notifications
In this guide, you’ll learn how to add digest functionality to email notifications. But before exploring the actual code, let’s understand what a digest notification is and how it works.
You can find the entire code(frontend as well as backend) for this app here.
If, instead, you want to add digest to in-app notifications, we have a guide for that as well. Take a look here.
Often when you associate notifications with user activity, the end user can be bombarded with messages because of the nature of the activity. Take for example the case of commenting in the context of a social media app. If you were to send a notification to a user for every comment they receive, and they happen to receive 100 comments, it could lead to user fatigue since you would have to send 100 messages.
This is where digest notifications come into the picture!
A digest notification is a notification that consolidates information from several notifications into one and delivers that notification to the end user instead of several separate messages.
Novu has a built-in digest engine that collects multiple trigger events, aggregates them into a single message, and delivers it to the subscriber. You can use the digest engine by adding a ‘digest node’ to your workflow in the workflow editor in the Novu dashboard. If you want to learn more about it, this is a great place to start.
Let’s see it in action now!
To get started with this, you need the following:
Once, you have these, follow the steps below:
Creating workflows is simple
create workflow
button, you’ll see a dropdown. Select blank workflow
from the dropdown:
Select 'blank workflow' from the dropdown
Workflow editor allows you to create and edit workflows
Email
channel. You’ll also
see the Digest
action on the right sidebar.Each node that is added below the digest node will only be triggered after the specified time interval
For example, in our case, say we want the email notification to be sent after every 6 hours. So, add the digest
action below the trigger node
, and add the email
channel node below the digest
node as shown below:
Adding a digest node to an email notification workflow
The digest
node allows you to set a specific time interval for when notifications
should be sent:
Setting time-interval in digest node
Once, you’ve configured it. Go ahead and configure the email
channel as per your
need:
Configuring the email node as per our requirements
Here’s a brief explanation of all the options:
You can write your own digest template in the ‘custom code’ section or just follow this guide as shown in the picture above. Once you’re done configuring this to your liking, click on the update
button on the top right.
It’ll automatically create a trigger code that you can use in your app. To get it, click on the get snippet
button on the top right and copy it:
Getting trigger code is simple
Now, let’s see how to add Novu to our app!
In your backend, install the novu package using the following code:
Now, create a route that you want to hit when called from the front end. In our demo app, this is the route:
Now, we need to write a controller function that will handle the logic for what is to be sent in the trigger function’s payload. In our case, this is the controller function:
To make it modular, we’ll keep the trigger code in a separate function in a separate file (novu.js
, in our case) and the trigger function is getting called in the controller function above by the name getEmailDigest
.
If you’re following the guide, you’ve already copied the trigger function. But before we can add it to our app, we need one key thing - Subscribers.
Subscribers are users to which the notifications are sent. You can see a list of subscribers in the Novu dashboard as well.
In our app, we’ll create a subscriber in Node.js as we’re writing our backend in Node.js, but we also have backend SDKs (Node.js, PHP, .NET, Elixir, Go, Ruby, Python, and Kotlin) to choose from. The recommended way to create a subscriber in NodeJS is as follows:
Here, we’re creating a subscriber with the subscriberID
of digestEmailSub.
In most real-world scenarios, the subscriberId
should be an alphanumeric entity like adfa67y87ad0
. You can read more about subscribers here.
Back in our app, we can now add the trigger function:
Now, we just need to hit the route defined above from the front end.
From the front end, we just need to hit the route we had defined above. Below, I’m sharing the body component of the demo app I created to illustrate this:
We’re hitting the backend route we had created earlier. The backend has been deployed on render as can be seen in this code snippet above.
Congratulations on following the guide up until this point. We can style our app a little using some TailwindCSS.
If you’ve done everything as recommended, you’ll end up with an app that looks like this:
Filtering by channel
In this app, when we enter the email id, some text in the input box, and click send, the notification appears in the inbox after the delay specified above (when we’re creating the workflow).
This is how we add digest to email notifications!