28 lines
798 B
PHP
28 lines
798 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Welcome Email</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome, {{ $user['first_name'] }}!</h1>
|
|
<p>You have successfully registered with the following details:</p>
|
|
<ul>
|
|
<li><strong>Email:</strong> {{ $user['email'] }}</li>
|
|
<li><strong>Phone:</strong> {{ $user['phone'] }}</li>
|
|
|
|
</ul>
|
|
<p>
|
|
<a href="{{ $activationLink }}"
|
|
style="display: inline-block; padding: 10px 20px; color: #fff; background-color: #28a745; text-decoration: none; border-radius: 5px;">
|
|
Activate Account
|
|
</a>
|
|
</p>
|
|
|
|
<p>This link will expire in 24 hours.</p>
|
|
|
|
<p>If you did not create this account, please ignore this email.</p>
|
|
<p>Thank you for joining us!</p>
|
|
</body>
|
|
</html>
|