
PK 
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Our Platform!</title>
<style>
/* Reset Styles */
body, table, td, div, p, a {
margin: 0;
padding: 0;
border: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #333333;
}
body {
background-color: #f5f7fb;
padding: 20px 0;
}
/* Main Container */
.email-container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Content Section */
.email-content {
padding: 40px;
}
.content-title {
font-size: 22px;
color: #3a0ca3;
margin-bottom: 20px;
font-weight: 600;
}
.content-text {
margin-bottom: 25px;
color: #4a5568;
}
/* Button Styles */
.btn {
display: inline-block;
padding: 14px 30px;
background: linear-gradient(to right, #4361ee, #3a0ca3);
color: white !important;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
margin: 20px 0;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}
/* Footer */
.email-footer {
background: #f8f9ff;
padding: 30px 40px;
text-align: center;
border-top: 1px solid #e9ecef;
}
.footer-text {
font-size: 14px;
color: #718096;
margin-top: 20px;
line-height: 1.5;
}
.unsubscribe-link {
color: #4361ee;
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 600px) {
.email-content {
padding: 30px 20px;
}
}
</style>
</head>
<body>
<div class="email-container">
<!-- Content Section -->
<div class="email-content">
<h2 class="content-title">Get Started with {{ env('APP_NAME') }}</h2>
<p class="content-text">Hello {{$user->name??''}},</p>
<p class="content-text">Thank you for registering with {{ env('APP_NAME') }}!</p>
<p class="content-text">Your username: <strong>{{$user->email??''}}</strong></p>
<!-- <a href="#" class="btn">Complete Your Profile</a> -->
<p class="content-text">If you have any questions, feel free to reply to this email or visit our help
center.</p>
<p class="content-text">Happy exploring!<br>{{ env('APP_NAME') }}</p>
</div>
<!-- Footer Section -->
<div class="email-footer">
<p class="footer-text">
You're receiving this email because you recently created a new {{ env('APP_NAME') }} account.<br>
<a href="#" class="unsubscribe-link">Unsubscribe</a> from these emails.
</p>
</div>
</div>
</body>
</html>


PK 99