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

31 lines
834 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('Emails.Layouts.Master')
@section('message_content')
<p>Здравствуйте! {{$first_name}}</p>
<p>
Спасибо за регистрацию на сайте {{ config('attendize.app_name') }}, в качестве организатора.
</p>
<p>
Вы можете создать мероприятие на сайте, подтвердив свой адрес электронной почты, используя ссылку ниже.
</p>
<div style="padding: 5px; border: 1px solid #ccc;">
{{route('confirmEmail', ['confirmation_code' => $confirmation_code])}}
</div>
<br><br>
<p>
Если у вас есть какие-либо вопросы, отзывы или предложения, обращайтесь к нам.
</p>
<p>
Спасибо!
</p>
@stop
@section('footer')
@stop