CluPilotCloud/resources/views/mail/operator-message.blade.php

16 lines
641 B
PHP

<x-mail.layout
:heading="__('customer_message.mail_heading')"
:preheader="\Illuminate\Support\Str::limit($bodyText, 90)"
:greeting="__('customer_message.mail_greeting', ['name' => $name])"
>
<tr><td style="padding:0 24px 32px 24px;">
{{-- The operator's own words, as they typed them. nl2br over an escaped
string, never {!! !!}: this text comes out of a form, and a message
somebody pastes in must not be able to bring markup into a mail we
sign our name to. --}}
<p style="margin:0;font-size:15px;line-height:24px;color:#43434e;">{!! nl2br(e($bodyText)) !!}</p>
</td></tr>
</x-mail.layout>