-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail-template.tsx
29 lines (27 loc) · 1.27 KB
/
email-template.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
interface EmailTemplateProps {
email: string
}
export function EmailTemplate({ email }: EmailTemplateProps) {
return `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome to Our Waitlist</title>
</head>
<body style="font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; line-height: 1.5; padding: 20px;">
<div style="max-width: 560px; margin: 0 auto; background-color: white; border-radius: 8px; padding: 20px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);">
<h1 style="color: #111827; font-size: 24px; margin-bottom: 16px;">Welcome to Our Waitlist!</h1>
<p style="color: #374151; font-size: 16px; margin-bottom: 24px;">
Thank you for joining our waitlist. We've received your email address (${email}) and will keep you updated on our progress.
</p>
<p style="color: #374151; font-size: 16px; margin-bottom: 24px;">
We're working hard to create something amazing and can't wait to share it with you!
</p>
<p style="color: #374151; font-size: 16px; margin-bottom: 8px;">Best regards,</p>
<p style="color: #111827; font-size: 16px; font-weight: 500;">The Team</p>
</div>
</body>
</html>
`
}