惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 聂微东
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
云风的 BLOG
云风的 BLOG
量子位
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
博客园 - 司徒正美
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Send Transactional Emails with Vue and Resend
Mailpeek · 2026-06-14 · via DEV Community

Mailpeek

Resend has quickly become the default way to send email from modern applications. The API is clean, the deliverability is good, and the developer experience is impressive. But Resend only handles sending emails. It provides a html field and you produce the HTML that you've ensured is compatible with Gmail, Outlook, and the many other email clients.

If you're working in Vue or Nuxt, you don't want to have to hand-code HTML for every email. You already have a component model. This guide shows how to author your emails as Vue components, render them to email-safe HTML, and send them with Resend.


What you'll need

  • A Resend account and an API key
  • A verified sending domain in Resend (or use their onboarding@resend.dev for testing)
  • A Vue 3 or Nuxt 3 project
  • Node 18+

Install the two packages you'll use to build and render the email, plus the Resend SDK:

npm install @mailpeek/components resend

@mailpeek/components is a set of Vue 3 components that compile to table-based, inline-styled HTML, plus a render() function that turns a component into an HTML string. It's open source and Vue 3 is the only peer dependency.


Step 1: Build the email as a Vue component

Create an email the same way you'd build any Vue component. The mailpeek components handle the email-specific HTML for you: tables for layout, inline styles, bulletproof buttons for Outlook, and so on.

<!-- emails/ConfirmEmail.vue -->
<script setup lang="ts">
import {
  EmailHtml, EmailHead, EmailBody, EmailContainer,
  EmailHeading, EmailText, EmailButton, EmailPreviewText,
} from '@mailpeek/components'

defineProps<{ name: string; confirmUrl: string }>()
</script>

<template>
  <EmailHtml>
    <EmailHead title="Confirm your email" />
    <EmailBody>
      <EmailPreviewText>Just one more step to get started</EmailPreviewText>
      <EmailContainer>
        <EmailHeading as="h1">Welcome, {{ name }}</EmailHeading>
        <EmailText>
          Thanks for signing up. Confirm your email address to activate your account.
        </EmailText>
        <EmailButton :href="confirmUrl">Confirm email</EmailButton>
      </EmailContainer>
    </EmailBody>
  </EmailHtml>
</template>

A few things worth pointing out:

  • EmailPreviewText sets the preheader text that shows up in the inbox list next to the subject line. It's hidden in the email body itself.
  • EmailButton outputs the VML + HTML hybrid that renders as a real button in Outlook, not just a styled link.
  • Props are fully typed, so the data each email needs is explicit and checked at compile time.

Step 2: Render the component to HTML

Resend expects a string of HTML. The render() function provides this and it's async, because it runs Vue's server-side renderer under the hood.

import { render } from '@mailpeek/components'
import ConfirmEmail from './emails/ConfirmEmail.vue'

const html = await render(ConfirmEmail, {
  name: 'Sarah',
  confirmUrl: 'https://app.example.com/confirm?token=abc123',
})

The second argument is your component's props. The returned html includes the email DOCTYPE and all styles inlined, ready to send.


Step 3: Send it with Resend

Now send that HTML to Resend:

import { Resend } from 'resend'

const resend = new Resend(process.env.RESEND_API_KEY)

await resend.emails.send({
  from: 'Acme <onboarding@yourdomain.com>',
  to: 'sarah@example.com',
  subject: 'Confirm your email',
  html,
})

That covers the component, to HTML, to an inbox.


Putting it together in a Nuxt server route

In a real app you'll usually send from the server. Here's the full flow as a Nuxt 3 server route. It works the same in any Node backend - the only Nuxt-specific part is the defineEventHandler wrapper.

// server/api/send-confirmation.post.ts
import { render } from '@mailpeek/components'
import { Resend } from 'resend'
import ConfirmEmail from '~/emails/ConfirmEmail.vue'

const resend = new Resend(process.env.RESEND_API_KEY)

export default defineEventHandler(async (event) => {
  const { email, name, confirmUrl } = await readBody(event)

  const html = await render(ConfirmEmail, { name, confirmUrl })

  const { data, error } = await resend.emails.send({
    from: 'Acme <onboarding@yourdomain.com>',
    to: email,
    subject: 'Confirm your email',
    html,
  })

  if (error) {
    throw createError({ statusCode: 502, statusMessage: 'Email failed to send' })
  }

  return { id: data?.id }
})

The same three steps apply to SendGrid, Postmark, Nodemailer, or any other provider. They all take an HTML string, and render() produces a plain one.


Previewing before you send

The reason email is painful is not knowing what the recipient will actually see. Gmail strips most of your <style> block. Outlook ignores any modern HTML or CSS.

You can check what survives without sending test emails to yourself. @mailpeek/preview renders your HTML so you can preview it in Gmail, Outlook, and dark mode, and flags the CSS each client will remove:

<script setup lang="ts">
import { EmailPreview } from '@mailpeek/preview'
import '@mailpeek/preview/style.css'

// the same `html` string you'd pass to Resend
defineProps<{ html: string }>()
</script>

<template>
  <EmailPreview :html="html" client="gmail" />
</template>

It estimates email client behaviour rather than replicating it, so it's feedback during development, not a replacement for your production-level QA process.


Skip the boilerplate

Building each email by hand is fine if you only need one or two emails. However, if you need a full suite for your product or business such as a welcome, email verification, password reset, order confirmation, invoices, payment failed etc. the work adds up fast.

That's exactly what mailpeek templates is for. 45 production-ready emails built on these same components, with typed props, dark mode variants, and pre-rendered HTML. Sending one with Resend is the same render() call you've already seen:

import { render } from '@mailpeek/components'
import { PasswordResetEmail } from '@mailpeek/templates'

const html = await render(PasswordResetEmail, {
  recipientName: 'Sarah',
  resetUrl: 'https://app.example.com/reset?token=abc123',
  expiryHours: 1,
  theme: { companyName: 'Acme', primaryColor: '#0d9488' },
})

You can define your brand with company name, brand colour, fonts, footer details - and it carries across every template.

Browse all 45 templates →