1 min read
Resend in Nuxt

Resend is a great provider to send transactional emails in your SaaS app.

In this article I will show how to send emails in Nuxt in a simple way.

Minimal Starter

// utils/resend.ts
export async function sendEmail() {
  return await $fetch('api.resend.com/emails', { method: 'POST', })
}

Using Vue Email

Integrating with Supabase