UNPKG

@454creative/easy-email

Version:

A framework-agnostic email service library for Node.js with observability and monitoring

72 lines (65 loc) 1.88 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Welcome to Our Service</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 600px; margin: 0 auto; padding: 20px; } .header { background-color: #4a86e8; color: white; padding: 20px; text-align: center; border-radius: 5px 5px 0 0; } .content { padding: 20px; border: 1px solid #ddd; border-top: none; border-radius: 0 0 5px 5px; } .button { display: inline-block; background-color: #4a86e8; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 20px 0; } .footer { margin-top: 20px; text-align: center; font-size: 12px; color: #777; } </style> </head> <body> <div class="header"> <h1>Welcome, {{name}}!</h1> </div> <div class="content"> <p>Thank you for signing up for our service. We're excited to have you on board!</p> <p>To get started, please verify your email address by clicking the button below:</p> <p style="text-align: center;"> <a href="{{activationLink}}" class="button">Verify Email Address</a> </p> <p>If the button above doesn't work, you can also copy and paste the following link into your browser:</p> <p style="word-break: break-all;">{{activationLink}}</p> <p>If you have any questions or need assistance, please don't hesitate to contact our support team.</p> <p>Best regards,<br>The Team</p> </div> <div class="footer"> <p>This email was sent to {{email}}. If you did not sign up for this service, please disregard this email.</p> </div> </body> </html>