Files
documenso/packages/email/template-components/template-document-rejection-confirmed.tsx
T
2026-05-08 16:04:22 +10:00

48 lines
1.3 KiB
TypeScript

import { Trans } from '@lingui/react/macro';
import { Container, Heading, Section, Text } from '../components';
interface TemplateDocumentRejectionConfirmedProps {
recipientName: string;
documentName: string;
documentOwnerName: string;
reason?: string;
}
export function TemplateDocumentRejectionConfirmed({
recipientName,
documentName,
documentOwnerName,
reason,
}: TemplateDocumentRejectionConfirmedProps) {
return (
<Container>
<Section>
<Heading className="font-semibold text-2xl">
<Trans>Rejection Confirmed</Trans>
</Heading>
<Text className="text-base text-primary">
<Trans>
This email confirms that you have rejected the document{' '}
<strong className="font-bold">"{documentName}"</strong> sent by {documentOwnerName}.
</Trans>
</Text>
{reason && (
<Text className="font-medium text-base text-slate-400">
<Trans>Rejection reason: {reason}</Trans>
</Text>
)}
<Text className="text-base">
<Trans>
The document owner has been notified of this rejection. No further action is required from you at this time.
The document owner may contact you with any questions regarding this rejection.
</Trans>
</Text>
</Section>
</Container>
);
}