I’m new to n8n and trying to figure out the best way to automate a few things without overcomplicating my setup. Ideally, after a user completes an exam, I want to:
store their score and basic details,
send a personalized result email,
and later follow up with a reminder or offer if they haven’t passed yet.
What would be the cleanest n8n approach for handling this kind of flow?
Would you recommend using webhooks from the site, or is there a better pattern for managing user events like exam completion?
in this case you can make your backend communicate with n8n using for example a webhook from the website when the exam is completed, then let n8n handle the rest , you can build a workflow that store the result in your DB ( or you can let it as it is in your backend ) , send the result email immediately, and after that you can use a Wait or scheduled workflow to follow up later if the user hasn’t passed