Files
docmost/apps/server/src/integrations/transactional/emails/change-password-email.tsx
T
2026-05-04 22:26:53 +01:00

24 lines
592 B
TypeScript

import { Section, Text } from 'react-email';
import * as React from 'react';
import { content, paragraph } from '../css/styles';
import { MailBody } from '../partials/partials';
interface Props {
username?: string;
}
export const ChangePasswordEmail = ({ username }: Props) => {
return (
<MailBody>
<Section style={content}>
<Text style={paragraph}>Hi {username},</Text>
<Text style={paragraph}>
This is a confirmation that your password has been changed.
</Text>
</Section>
</MailBody>
);
};
export default ChangePasswordEmail;