Discover how to automate email notifications after a Bolna Voice AI phone call using n8n for your automations and workflows.
Webhook
trigger node.Create a webhook trigger on n8n
Webhook
node to start your workflow. Copy the Test URL provided by the node and paste it into the webhook_url
field in your Bolna agent’s configuration. Finally, click “Listen for Test Event” in n8n and make a test call with your Bolna agent to send sample data to your workflow.Add the email module. For this tutorial, we've used Gmail. You can use any other Email Provider as well.
Gmail
node (or any other email node like Send Email (SMTP)
) after the Webhook trigger. Connect your email account in the credentials section. Then, map the data received from the Bolna webhook into the email fields using n8n’s expression editor.Please note:"extracted_data"
. You can access it in n8n using an expression like {{ $json.body.extracted_data.address }}
."context_details" > "recipient_data"
. You can access the recipient’s email with an expression like {{ $json.body.context_details.recipient_data.email }}
.Running & testing the entire scenario
Receiving the email