Use html in emails

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-10-14 16:30:33 +02:00
parent 00c0a56f50
commit ae45410b82
34 changed files with 2211 additions and 208 deletions

View File

@@ -0,0 +1,25 @@
import { Button, Section, Text } from '@react-email/components';
import * as React from 'react';
import EmailLayout, { bodyText, button, buttonContainer, footerText } from './components/EmailLayout';
export const FrameworkExport = () => {
return (
<EmailLayout subject="Your framework export is ready">
<Text style={bodyText}>
Your framework export has been completed successfully. Click the button below to download it:
</Text>
<Section style={buttonContainer}>
<Button style={button} href={'{{.DownloadUrl}}'}>
Download Export
</Button>
</Section>
<Text style={footerText}>
This link will expire in 24 hours.
</Text>
</EmailLayout>
);
};
export default FrameworkExport;