@extends('emails.layouts.main') @section('title', 'Help Center Contact Form') @section('content') {{-- Salutation --}}
Help Center Contact Request
{{-- Email body paragraph --}}You have received a new message from the Help Center contact form.
{{-- User Information Section --}}User Information
Name: {{ $user_name }}
Email: {{ $user_email }}
User ID: {{ $user->id }}
Account Type: {{ ucfirst(strtolower($user->role->value ?? 'User')) }}
Message Details
Subject: {{ $subject }}
Message:
{!! nl2br(e($user_message)) !!}
This email was sent from the {{ config('app.name') }} Help Center.
Timestamp: {{ now()->format('F j, Y \a\t g:i A T') }}