| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <!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 ShopCall.ai</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
- line-height: 1.6;
- color: #1c1917;
- background-color: #fafaf9;
- }
- .container {
- max-width: 600px;
- margin: 0 auto;
- background-color: #ffffff;
- }
- .header {
- background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
- padding: 40px 20px;
- text-align: center;
- }
- .logo {
- font-size: 32px;
- font-weight: bold;
- color: #ffffff;
- text-decoration: none;
- letter-spacing: -0.5px;
- }
- .content {
- padding: 40px 30px;
- }
- .title {
- font-size: 24px;
- font-weight: 600;
- color: #1c1917;
- margin-bottom: 20px;
- }
- .text {
- font-size: 16px;
- color: #44403c;
- margin-bottom: 20px;
- }
- .button {
- display: inline-block;
- padding: 14px 32px;
- background-color: #1c1917;
- color: #ffffff;
- text-decoration: none;
- border-radius: 8px;
- font-weight: 600;
- font-size: 16px;
- margin: 20px 0;
- transition: background-color 0.2s;
- }
- .button:hover {
- background-color: #292524;
- }
- .highlight-box {
- background-color: #fef3c7;
- border-left: 4px solid #f59e0b;
- padding: 16px 20px;
- margin: 20px 0;
- border-radius: 4px;
- }
- .divider {
- border-top: 1px solid #e7e5e4;
- margin: 30px 0;
- }
- .footer {
- padding: 30px;
- text-align: center;
- color: #78716c;
- font-size: 14px;
- background-color: #fafaf9;
- }
- .footer a {
- color: #57534e;
- text-decoration: none;
- }
- .footer a:hover {
- text-decoration: underline;
- }
- .note {
- font-size: 14px;
- color: #78716c;
- margin-top: 20px;
- }
- .feature-list {
- margin: 20px 0;
- padding-left: 0;
- list-style: none;
- }
- .feature-list li {
- padding: 8px 0 8px 28px;
- position: relative;
- color: #44403c;
- }
- .feature-list li:before {
- content: "✓";
- position: absolute;
- left: 0;
- color: #22c55e;
- font-weight: bold;
- font-size: 18px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="header">
- <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
- </div>
- <div class="content">
- <h1 class="title">You're Invited to Join ShopCall.ai!</h1>
- <p class="text">Hello!</p>
- <p class="text">You've been invited to join ShopCall.ai, the AI-powered phone support system that transforms e-commerce customer service.</p>
- <div class="highlight-box">
- <strong>Your invitation is ready!</strong><br>
- Click the button below to accept your invitation and set up your account.
- </div>
- <a href="{{ .ConfirmationURL }}" class="button">Accept Invitation</a>
- <div class="divider"></div>
- <p class="text"><strong>Why ShopCall.ai?</strong></p>
- <ul class="feature-list">
- <li>24/7 AI phone support that never sleeps</li>
- <li>Support in 50+ languages</li>
- <li>78% reduction in customer service costs</li>
- <li>Seamless integration with your e-commerce platform</li>
- <li>Real-time analytics and call insights</li>
- </ul>
- <p class="note">This invitation link will expire in 7 days. If you didn't expect this invitation or have any questions, please contact the person who invited you.</p>
- </div>
- <div class="footer">
- <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
- <p style="margin-top: 10px;">
- <a href="{{ .SiteURL }}/about">About</a> •
- <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
- <a href="{{ .SiteURL }}/terms">Terms of Service</a>
- </p>
- <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
- </div>
- </div>
- </body>
- </html>
|