Files
newznab-tmux/resources/views/emails/newAccountCreated.blade.php
T
2025-12-10 14:45:44 +01:00

23 lines
558 B
PHP

@extends('emails.email_layout')
@section('title')
New User Registration
@endsection
@section('site_name', $site)
@section('content')
<p>A new user has registered on <strong>{{ $site }}</strong>.</p>
<div class="info-box">
<strong>👤 New User:</strong> {{ $username }}
</div>
<p>This is an automated notification. No action is required unless you need to review the new registration.</p>
<div class="signature">
<p>Best regards,</p>
<p><strong>The {{ $site }} System</strong></p>
</div>
@endsection