Usage
import { DataTable } from "@/components/email/data-table";
<DataTable
columns={[
{ header: "Name", key: "name" },
{ header: "Status", key: "status", align: "right" },
]}
rows={[
{ name: "Ada", status: "Active" },
{ name: "Linus", status: "Pending" },
]}
/>
Render the React Email tree to email HTML with your email delivery service. Replace sample addresses, verification codes, URLs, prices, and brand assets before sending. This template does not send email or implement authentication.