Send Summary of the call via email
# support
g
Hi Team, I'm looking for the best solution to send the summarization of a tech support AI agent call via email using. I'm new to Vapi and I would like to know what tool, integration or other feature I could use to make this happen. Thank you all!
v
To send a call summary via email, set up your Vapi Server URL to receive the
end-of-call-report
webhook, then trigger an email from your backend. For example, using Node.js and Nodemailer:
Copy code
js
// Express endpoint to receive Vapi webhook
app.post('/vapi-webhook', async (req, res) => {
  const { summary } = req.body.message;
  // Send email with summary
  await transporter.sendMail({
    to: 'recipient@example.com',
    subject: 'Call Summary',
    text: summary,
  });
  res.sendStatus(200);
});
Replace
recipient@example.com
and configure your transporter as needed. This will email the call summary each time a call ends.
For more details, see the [Vapi Server URL events documentation](https://docs.vapi.ai/server-url/events#end-of-call-report). Source: - [Server Events End of Call Report](https://docs.vapi.ai/server-url/events#end-of-call-report)
t
@GValadez I can help. We can schedule a meeting, if you want.
g
@Toketo1 Sounds pretty good! I'm available today if you are, let me know your availability
t
@GValadez dm me
4 Views