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

31 lines
572 B
PHP

@extends('Emails.Layouts.Master')
@section('message_content')
<p>Hi {{$first_name}}</p>
<p>
Thank you for registering for Attendize. We're thrilled to have you on board.
</p>
<p>
You can create you first event and confirm your email using the link below.
</p>
<div style="padding: 5px; border: 1px solid #ccc;" >
{{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
</p>
@stop
@section('footer')
@stop