Merge pull request #3270 from JamesWilson19947/add-markdown-to-emails

Added markdown to some emails #3101
This commit is contained in:
James Brooks
2018-10-15 12:38:33 +01:00
committed by GitHub
6 changed files with 63 additions and 21 deletions
@@ -0,0 +1,11 @@
@component('mail::message')
# {{ trans('notifications.component.status_update.mail.greeting') }}
{{ $content }}
Thanks,<br>
{{ Config::get('setting.app_name') }}
@include('notifications.partials.subscription')
@endcomponent
@@ -0,0 +1,11 @@
@component('mail::message')
# {{ trans('notifications.incident.update.mail.title', ['name' => $incidentName, 'new_status' => $newStatus]) }}
{{ $content }}
Thanks,<br>
{{ Config::get('setting.app_name') }}
@include('notifications.partials.subscription')
@endcomponent
@@ -0,0 +1,11 @@
@component('mail::message')
# {{ trans('notifications.schedule.new.mail.title') }}
{{ $content }}
Thanks,<br>
{{ Config::get('setting.app_name') }}
@include('notifications.partials.subscription')
@endcomponent