I'm using Laravel 5.3
and I'm trying to send an email with nl2br()
. So I'm using the default email blade file
that's new in Laravel 5.3
(vendor/notifications/email.blade.php
)
But it does not show line breaks. Only this:
sttesttesttesttesttesttesttesttesttesttesttesttest<br /> <br /> <br /> <br /> testtesttesttesttesttesttesttesttesttesttesttesttesttesttest
I've done it like this:
<!-- Outro -->
@foreach ($outroLines as $line)
<p style="{{ $style['``'] }}">
{{ nl2br($line) }}
</p>
@endforeach
What am I doing wrong?
This:
{!! nl2br(htmlspecialchars($line)) !!}
is not working.