mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 18:58:56 +00:00
23 lines
558 B
PHP
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
|