laravel-verify-new-email icon indicating copy to clipboard operation
laravel-verify-new-email copied to clipboard

localized email templates

Open Saifallak opened this issue 2 years ago • 1 comments

first email :

@component('mail::message')
    # {{ \Illuminate\Support\Facades\Lang::get('Verify Email Address') }}

    # {{ \Illuminate\Support\Facades\Lang::get('Please click the button below to verify your email address.') }}

    @component('mail::button', ['url' => $url])
        # {{ \Illuminate\Support\Facades\Lang::get('Verify Email Address') }}
    @endcomponent

    {{ \Illuminate\Support\Facades\Lang::get('If you did not create an account, no further action is required.') }}

    {{ \Illuminate\Support\Facades\Lang::get('Thanks') }},<br>
    {{ config('app.name') }}
@endcomponent

new email

@component('mail::message')
    # {{ \Illuminate\Support\Facades\Lang::get('Verify New Email Address') }}

    # {{ \Illuminate\Support\Facades\Lang::get('Please click the button below to verify your new email address.') }}

    @component('mail::button', ['url' => $url])
        # {{ \Illuminate\Support\Facades\Lang::get('Verify Email New Address') }}
    @endcomponent

    {{ \Illuminate\Support\Facades\Lang::get('If you did not update your email address, no further action is required.') }}

    {{ \Illuminate\Support\Facades\Lang::get('Thanks') }},<br>
    {{ config('app.name') }}
@endcomponent

Saifallak avatar Apr 25 '22 12:04 Saifallak

Any update about this?

MDylan avatar Nov 28 '22 22:11 MDylan