import { Body, Column, Container, Html, Img, Link, Row, Tailwind, } from "@react-email/components"; import { Text, Heading } from "./post"; import { confirmEmailTailwindConfig, LeafletWatermark, MailHead, makeStaticUrl, } from "./shared"; export const PubConfirmEmail = (props: { code?: string; assetsBaseUrl?: string; publicationName?: string; publicationUrl?: string; }) => { const staticUrl = makeStaticUrl( props.assetsBaseUrl ?? "https://leaflet.pub", ); return ( Thank you for subscribing to {props.publicationUrl ? ( {props.publicationName ?? "Leaflet Explorers"} ) : ( {props.publicationName ?? "Leaflet Explorers"} )} Verify your email with this code {props.code ?? "000000"} ); }; export default PubConfirmEmail;