Sending Emails from an application on Vercel

Learn best practices for sending emails from an application on Vercel
Last updated on October 9, 2024
Functions

You can send emails from within your application using Vercel Functions. You can either rely on the outgoing SMTP connection of your Vercel Function or use the API of an external service.

To send emails from Vercel without restrictions, we recommend the use of third-party mail services:

By using one of the services listed above, you will also benefit from analytics, scheduling, and many other features exclusively available from a specialized service.

You can also use libraries like nodemailer. When doing so, we recommend using an external host value provided by a third-party provider, rather than defaulting to the outbound SMTP connection of the Vercel Function.

Couldn't find the guide you need?