mirror of
https://github.com/flarum/core.git
synced 2025-08-11 10:55:47 +02:00
Don't sanitize values in plain-text emails
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
Hey {{ $user->display_name }}!
|
Hey {!! $user->display_name !!}!
|
||||||
|
|
||||||
{{ $blueprint->post->user->display_name }} made a post in a discussion you're following: {{ $blueprint->post->discussion->title }}
|
{!! $blueprint->post->user->display_name !!} made a post in a discussion you're following: {!! $blueprint->post->discussion->title !!}
|
||||||
|
|
||||||
To view the new activity, check out the following link:
|
To view the new activity, check out the following link:
|
||||||
{{ app()->url() }}/d/{{ $blueprint->post->discussion_id }}/{{ $blueprint->post->number }}
|
{!! app()->url() !!}/d/{!! $blueprint->post->discussion_id !!}/{!! $blueprint->post->number !!}
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ strip_tags($blueprint->post->contentHtml) }}
|
{!! strip_tags($blueprint->post->contentHtml) !!}
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user