328 lines
8.4 KiB
TypeScript
328 lines
8.4 KiB
TypeScript
export function getVerificationEmailHtml({
|
||
url,
|
||
appName,
|
||
}: {
|
||
url: string;
|
||
appName: string;
|
||
}): string {
|
||
return `
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Email Verification - ${appName}</title>
|
||
<style>
|
||
body {
|
||
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
background-color: #f0f2f5;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.wrapper {
|
||
max-width: 600px;
|
||
margin: 40px auto;
|
||
background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||
overflow: hidden;
|
||
}
|
||
.header {
|
||
background: linear-gradient(90deg, #346df1 0%, #5b9aff 100%);
|
||
padding: 30px 20px;
|
||
text-align: center;
|
||
color: #ffffff;
|
||
}
|
||
.header h1 {
|
||
font-size: 28px;
|
||
margin: 0;
|
||
font-weight: 600;
|
||
}
|
||
.header p {
|
||
font-size: 16px;
|
||
margin: 8px 0 0;
|
||
opacity: 0.9;
|
||
}
|
||
.content {
|
||
padding: 30px;
|
||
color: #333333;
|
||
}
|
||
.content h2 {
|
||
font-size: 20px;
|
||
margin: 0 0 15px;
|
||
color: #1a1a1a;
|
||
}
|
||
.content p {
|
||
font-size: 16px;
|
||
line-height: 1.6;
|
||
margin: 0 0 20px;
|
||
color: #555555;
|
||
}
|
||
.button-container {
|
||
text-align: center;
|
||
margin: 20px 0;
|
||
}
|
||
.button {
|
||
display: inline-block;
|
||
padding: 14px 30px;
|
||
background-color: #346df1;
|
||
color: #ffffff;
|
||
text-decoration: none;
|
||
border-radius: 6px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
transition: background-color 0.3s;
|
||
}
|
||
.button:hover {
|
||
background-color: #2858c1;
|
||
}
|
||
.divider {
|
||
height: 1px;
|
||
background-color: #e0e0e0;
|
||
margin: 30px 0;
|
||
}
|
||
.footer {
|
||
padding: 20px 30px;
|
||
background-color: #f9fafb;
|
||
text-align: center;
|
||
font-size: 14px;
|
||
color: #888888;
|
||
}
|
||
.footer a {
|
||
color: #346df1;
|
||
text-decoration: none;
|
||
}
|
||
.footer a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="wrapper">
|
||
<div class="header">
|
||
<h1>Welcome to ${appName}</h1>
|
||
<p>Your journey starts here 🎉</p>
|
||
</div>
|
||
<div class="content">
|
||
<h2>Verify Your Email</h2>
|
||
<p>
|
||
Hello there,<br />
|
||
Thank you for joining ${appName}! To complete your login and get started,
|
||
please verify your email address by clicking the button below:
|
||
</p>
|
||
<div class="button-container">
|
||
<a href="${url}" class="button">Verify Email Now</a>
|
||
</div>
|
||
<p>
|
||
Or copy and paste the link below into your browser: <br />
|
||
<a href="${url}">${url}</a>
|
||
</p>
|
||
<p>
|
||
If you didn’t request this email or believe this was sent in error,
|
||
you can safely ignore it. This link will expire in 24 hours for security reasons.
|
||
</p>
|
||
</div>
|
||
<div class="divider"></div>
|
||
<div class="footer">
|
||
<p>
|
||
Best regards,<br />
|
||
The ${appName} Team
|
||
</p>
|
||
<p>
|
||
Need help? <a href="mailto:support@${appName.toLowerCase()}">Contact Support</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
`;
|
||
}
|
||
|
||
export function applyRecordEmailHtml({
|
||
appUrl,
|
||
appName,
|
||
zone_name,
|
||
type,
|
||
name,
|
||
content,
|
||
comment,
|
||
}: {
|
||
appUrl: string;
|
||
appName: string;
|
||
zone_name: string;
|
||
type: string;
|
||
name: string;
|
||
content: string;
|
||
comment: string;
|
||
}) {
|
||
return `
|
||
<html>
|
||
<head>
|
||
<title>Record Email - ${appName}</title>
|
||
<style>
|
||
body {
|
||
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
background-color: #f0f2f5;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.wrapper {
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||
overflow: hidden;
|
||
}
|
||
.content {
|
||
padding: 30px;
|
||
color: #333333;
|
||
}
|
||
.content h2 {
|
||
font-size: 20px;
|
||
margin: 0 0 15px;
|
||
color: #1a1a1a;
|
||
}
|
||
.content p {
|
||
font-size: 16px;
|
||
line-height: 1.6;
|
||
margin: 0 0 20px;
|
||
color: #555555;
|
||
}
|
||
.button-container {
|
||
text-align: center;
|
||
margin: 20px 0;
|
||
}
|
||
.button {
|
||
display: inline-block;
|
||
padding: 14px 30px;
|
||
background-color: #346df1;
|
||
color: #ffffff;
|
||
text-decoration: none;
|
||
border-radius: 6px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
transition: background-color 0.3s;
|
||
}
|
||
.button:hover {
|
||
background-color: #2858c1;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="wrapper">
|
||
<table>
|
||
<tr>
|
||
<th>Zone</th>
|
||
<td>${zone_name}</td>
|
||
</tr>
|
||
<tr>
|
||
<th>Type</th>
|
||
<td>${type}</td>
|
||
</tr>
|
||
<tr>
|
||
<th>Name</th>
|
||
<td>${name}</td>
|
||
</tr>
|
||
<tr>
|
||
<th>Content</th>
|
||
<td>${content}</td>
|
||
</tr>
|
||
<tr>
|
||
<th>Comment</th>
|
||
<td>${comment}</td>
|
||
</tr>
|
||
</table>
|
||
|
||
<div class="button-container">
|
||
<a href="${appUrl}/admin/records" class="button">Review Record</a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
`;
|
||
}
|
||
|
||
export function applyRecordToUserEmailHtml({
|
||
appUrl,
|
||
appName,
|
||
subdomain,
|
||
}: {
|
||
appUrl: string;
|
||
appName: string;
|
||
subdomain: string;
|
||
}) {
|
||
return `
|
||
<html>
|
||
<head>
|
||
<title>Record Email - ${appName}</title>
|
||
<style>
|
||
body {
|
||
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
background-color: #f0f2f5;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.wrapper {
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||
overflow: hidden;
|
||
}
|
||
.content {
|
||
padding: 30px;
|
||
color: #333333;
|
||
}
|
||
.content h2 {
|
||
font-size: 20px;
|
||
margin: 0 0 15px;
|
||
color: #1a1a1a;
|
||
}
|
||
.content p {
|
||
font-size: 16px;
|
||
line-height: 1.6;
|
||
margin: 0 0 20px;
|
||
color: #555555;
|
||
}
|
||
.button-container {
|
||
text-align: center;
|
||
margin: 20px 0;
|
||
}
|
||
.button {
|
||
display: inline-block;
|
||
padding: 14px 30px;
|
||
background-color: #346df1;
|
||
color: #ffffff;
|
||
text-decoration: none;
|
||
border-radius: 6px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
transition: background-color 0.3s;
|
||
}
|
||
.button:hover {
|
||
background-color: #2858c1;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="wrapper">
|
||
<table>
|
||
<tr>
|
||
<th>Domain: </th>
|
||
<td>${subdomain}</td>
|
||
</tr>
|
||
</table>
|
||
|
||
<div class="button-container">
|
||
<a href="${appUrl}/dashboard/records" class="button">Active Record</a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
`;
|
||
}
|