Daily digest email
I am trying to create a once a day email for users that summarizes their activity. Notifications should be grouped by product type which can be a variable passed in the payload. To implement this i was thinking i could loop through all events and get the payload and then do whatever logic after that. I have started to do this in the workflow editor using the 'custom code' section. This seems like it may take a long time to write. I saw in documentation there is an template editor that seems like it would be really helpful. I don't see this anywhere in my sandbox environment, I was wondering how could get access to this. I have attached a screenshot of how i am currently trying to write the logic.
Template Editor | Novu Documentation
Learn how to use the Novu notification template editor to design notifications

8 Replies
Or can this logic be written in a python script?
i have been looking more into the custom step feature to implement this. does that sound like it could be a potential solution for my custom aggregation/filtering logic?
it seems like all the custom step example use typescript. is it possible to write a python script to have this same functionality?
Hi @Jonathan Licht the custom step is based on Framework, which is Typescript only. @Pawan Jain do we have an exmpale to share here? Maybe the multi workflow digest example?
You can take a look at this example if you'r ok with TS, https://github.com/novuhq/examples/blob/main/novu-workflows/react/multi-workflow-digest/app/novu/workflows/multi-workflow-digest/workflow.ts
GitHub
examples/novu-workflows/react/multi-workflow-digest/app/novu/workfl...
Contribute to novuhq/examples development by creating an account on GitHub.
@Jonathan Licht
Above example will work for your usecase?
hi Pawan, does Novu support use where we can include a call to an AWS lambda within a step?
@Kevin
Yes, you can use custom step to call AWS lambda
https://docs.novu.co/framework/custom
Custom Step | Novu Documentation
Used to execute any custom code as a step in the workflow.
@Pawan Jain @Tomer Barnea Sorry I am just coming back to this example you shared above. This is exactly the type of thing I am trying to do.
I am unsure how to write a workflow as code and push that workflow to the sandbox environment we have. Is there an example of how to do that?
@Jonathan Licht
Checkout this doc
https://docs.novu.co/framework/overview
Next pages have quickstart in most popular nodejs based frameworks.