Learn how to send an email using React Email and the Resend Node.js SDK.
npm install resend @react-email/components
.jsx
.tsx
import * as React from 'react'; import { Html, Button } from "@react-email/components"; export function Email(props) { const { url } = props; return ( <Html lang="en"> <Button href={url}>Click me</Button> </Html> ); } export default Email;
import { Resend } from 'resend'; import { Email } from './email'; const resend = new Resend('re_123456789'); await resend.emails.send({ from: 'you@example.com', to: 'user@gmail.com', subject: 'hello world', react: <Email url="https://example.com" />, });