mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
export const PROJECT_INVITE_EMAIL_NO_ACCOUNT = `<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>You're invited to a Litlyx workspace</title>
|
|
</head>
|
|
|
|
<body style="margin:0; padding:0; font-family: Arial, sans-serif; background-color:#f9f9f9;">
|
|
<table align="center" cellpadding="0" cellspacing="0" width="100%"
|
|
style="max-width:600px; margin:auto; background-color:#ffffff; border-radius:8px;">
|
|
<tr>
|
|
<td align="center" style="padding: 40px 20px 10px;">
|
|
<img src="https://static.litlyx.com/icon.png" alt="" width="48px" height="48px">
|
|
<h2 style="font-size:20px; color:#333333; margin:0;">You're invited to the Litlyx workspace
|
|
<strong>[Workspace_Name]</strong>!
|
|
</h2>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style="padding: 20px 40px 30px; text-align: left; color:#4a4a4a; font-size:16px;">
|
|
<p style="font-size:16px; line-height:1.6; color:#484848;">
|
|
Join now by clicking the button below.
|
|
</p>
|
|
|
|
<a href="[Link]"
|
|
style="display:block; background-color:#0a0a0a; color:#ffffff; text-align:center; border-radius:16px; text-decoration:none; font-size:14px; padding:16px; margin-top:20px;font-weight: bold;"
|
|
target="_blank">
|
|
Join the Workspace
|
|
</a>
|
|
|
|
<p style="font-size:14px; line-height:1.6; color:#777777; margin-top:24px;">
|
|
Need help? Reach out anytime at <a href="mailto:help@litlyx.com" style="color:#007BFF;">help@litlyx.com</a>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 20px 40px; text-align: center; font-size: 12px; color: #777777;">
|
|
<p style="margin-top: 10px;">2025 © Litlyx - Analytics reimagined. All rights reserved.</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
|
|
</html>` |