Attendize/resources/views/Emails/messageOrganiser.blade.php

20 lines
524 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
@extends('Emails.Layouts.Master')
@section('message_content')
<p>Hi there,</p>
<p>You have received a message from <b>{{$sender_name}}</b> in relation to the event <b>{{$event->title}}</b>.</p>
<p style="padding: 10px; margin:10px; border: 1px solid #f3f3f3;">
{!! nl2br($message_content) !!}
</p>
<p>
You can contact <b>{{$sender_name}}</b> directly at <a href='mailto:{{$sender_email}}}'>{{$sender_email}}</a>, or by replying to this email.
</p>
@stop
@section('footer')
2016-04-09 14:29:29 +00:00
2016-02-29 15:59:36 +00:00
@stop