A React html component to wrap emails.
npm install @react-email/components -E # or get the individual package npm install @react-email/html -E
import { Html, Button } from "@react-email/components"; const Email = () => { return ( <Html lang="en" dir="ltr"> <Button href="https://example.com" style={{ color: "#61dafb" }}> Click me </Button> </Html> ); };