15 lines
344 B
PHP
15 lines
344 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Welcome Email</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h2>Welcome to the site {{$user['name']}}</h2>
|
|
<br/>
|
|
Your registered email-id is {{$user['email']}} , Please click on the below link to verify your email account
|
|
<br/>
|
|
<a href="{{ url('user/verify/', $user['verification_code']) }}">Verify Email</a>
|
|
</body>
|
|
|
|
</html> |