Attendize/resources/views/Emails/ConfirmEmail.blade.php

31 lines
595 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
@extends('Emails.Layouts.Master')
@section('message_content')
<p>Hi {{$first_name}}</p>
<p>
2016-04-09 14:29:29 +00:00
Thank you for registering for {{ config('attendize.app_name') }}. We're thrilled to have you on board.
2016-02-29 15:59:36 +00:00
</p>
<p>
You can create you first event and confirm your email using the link below.
2016-02-29 15:59:36 +00:00
</p>
<div style="padding: 5px; border: 1px solid #ccc;">
2016-02-29 15:59:36 +00:00
{{route('confirmEmail', ['confirmation_code' => $confirmation_code])}}
</div>
<br><br>
<p>
If you have any questions, feedback or suggestions feel free to reply to this email.
</p>
<p>
Thank you
2016-02-29 15:59:36 +00:00
</p>
@stop
@section('footer')
@stop