Laravel 5 adding HTML to email

后端 未结 4 1029
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-31 00:01

I\'m currently trying to create a HTML email in Laravel 5 and I have some text (which contains
elements) I want to insert in the email. I use the fo

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 00:33

    You need to use:

    {!! $text !!}
    

    instead of

    {{ $text }}
    

    Blade automatically escapes any html when echoing unless you explicitly tell it not to.

提交回复
热议问题