27 lines
786 B
PHP
27 lines
786 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Update Your Password</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, {{ $mailData['name'] }}!</h1>
|
|
|
|
<p>We received a request to update the password for your account.</p>
|
|
|
|
<p>If you made this request, you can update your password using the link below:</p>
|
|
|
|
<p>
|
|
<a href=" http://vib360.betadelivery.com/forget-password/{{$mailData['user_id'] }}"
|
|
style="display: inline-block; padding: 10px 20px; color: #fff; background-color: #007bff; text-decoration: none; border-radius: 5px;">
|
|
Update Password
|
|
</a>
|
|
</p>
|
|
|
|
|
|
<p>If you did not request a password update, no action is needed. Your account is secure.</p>
|
|
|
|
<p>Thank you,<br>The Support Team</p>
|
|
</body>
|
|
</html>
|