@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Oh no!') @else # @lang('Estimado(a) cliente:') @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Button --}} @isset($actionText) @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else @lang('Saludos'),
Siglo del Hombre Editores S.A. @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang( "Si tiene problemas para hacer clic en el botón \":actionText\", copie y pege la URL a continuación \n". 'en su navegador web: [:actionURL](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl, ] ) @endcomponent @endisset @endcomponent