mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
19 lines
420 B
PHP
19 lines
420 B
PHP
@extends('emails.email_layout')
|
|
|
|
@section('title')
|
|
Contact Form Submission
|
|
@endsection
|
|
|
|
@section('content')
|
|
<p>A new contact form has been submitted.</p>
|
|
|
|
<div class="info-box">
|
|
<strong>📝 Message:</strong>
|
|
<div style="margin-top: 10px;">
|
|
{!! nl2br(e($mailBody)) !!}
|
|
</div>
|
|
</div>
|
|
|
|
<p>Please respond to this inquiry at your earliest convenience.</p>
|
|
@endsection
|