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

31 lines
598 B
PHP

@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Hi {{$first_name}}</p>
<p>
Thank you for registering for {{ config('attendize.app_name') }}. 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