import { Section, Text, Button } from '@react-email/components'; import * as React from 'react'; import { button, content, paragraph } from '@docmost/transactional/css/styles'; import { MailBody } from '@docmost/transactional/partials/partials'; interface Props { billingLink: string; workspaceName: string; } export const TrialEndedEmail = ({ billingLink, workspaceName }: Props) => { return (
Hi there, Your Docmost 7-day free trial for {workspaceName} has come to an end. To continue using Docmost for your wiki and documentation, please upgrade to a premium plan.
PS: If you would like to extend your trial, please reply this email.
); }; export default TrialEndedEmail;