dawarich/app/views/users_mailer/welcome.html.erb
2025-08-13 20:25:48 +02:00

40 lines
1.3 KiB
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
.header { background: #2563eb; color: white; padding: 20px; text-align: center; }
.content { padding: 20px; background: #f9fafb; }
.cta { background: #2563eb; color: white; padding: 12px 24px; text-decoration: none; border-radius: 6px; display: inline-block; margin: 20px 0; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Welcome to Dawarich!</h1>
</div>
<div class="content">
<p>Hi <%= @user.email %>,</p>
<p>Welcome to Dawarich! We're excited to have you on board.</p>
<p>Your 7-day free trial has started. During this time, you can:</p>
<ul>
<li>Track your location data</li>
<li>View your movement patterns on beautiful maps</li>
<li>Analyze your travel statistics</li>
<li>Export your data in various formats</li>
</ul>
<a href="https://my.dawarich.app" class="cta">Start Exploring Dawarich</a>
<p>If you have any questions, feel free to drop us a message at hi@dawarich.app</p>
<p>Happy tracking!<br>
Evgenii from Dawarich</p>
</div>
</div>
</body>
</html>