import { Section, Text } from 'react-email'; 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; } export const VerificationExpiredEmail = ({ pageTitle, spaceName, pageUrl }: Props) => { return (
Hi there, The verification for {pageTitle} in the{' '} {spaceName} space has expired. Please re-verify the page to confirm it is still accurate.
Re-verify page
); }; export default VerificationExpiredEmail;