1. Install dependencies

Get the @react-email/components package and the Postmark Node.js SDK.

2. Create an email using React

Start by building your email template in a .jsx or .tsx file.

email.jsx
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>
  );
}

3. Convert to HTML and send email

Import the email template you just built, convert into a HTML string, and use the Postmark SDK to send it.

Try it yourself

Postmark example

See the full source code.