Files
probo/packages/emails/src/PasswordReset.tsx
Sacha Al Himdani ae45410b82 Use html in emails
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
2025-10-15 17:55:36 +02:00

26 lines
795 B
TypeScript

import { Button, Section, Text } from '@react-email/components';
import * as React from 'react';
import EmailLayout, { bodyText, button, buttonContainer, footerText } from './components/EmailLayout';
export const PasswordReset = () => {
return (
<EmailLayout subject="Reset your password">
<Text style={bodyText}>
You have requested a password reset for your Probo account. Click the button below to reset your password:
</Text>
<Section style={buttonContainer}>
<Button style={button} href={'{{.ResetUrl}}'}>
Reset Password
</Button>
</Section>
<Text style={footerText}>
If you did not request this password reset, please ignore this email.
</Text>
</EmailLayout>
);
};
export default PasswordReset;