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

31 lines
774 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('en.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