import { Section, Text } from '@react-email/components'; import * as React from 'react'; import { content, paragraph } from '../css/styles'; import { EmailButton, MailBody } from '../partials/partials'; interface Props { pageTitle: string; spaceName: string; pageUrl: string; expiresAt: string; } export const VerificationExpiringEmail = ({ pageTitle, spaceName, pageUrl, expiresAt, }: Props) => { return (
Hi there, The page {pageTitle} in the{' '} {spaceName} space needs to be re-verified. The verification expires on {expiresAt}.
Review page
); }; export default VerificationExpiringEmail;