39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<x-mail::message>
|
|
# Authentication Verification Required
|
|
|
|
@if($userName)
|
|
Dear {{ $userName }},
|
|
@else
|
|
Greetings,
|
|
@endif
|
|
|
|
A request has been made to access your **{{ config('app.name') }}** account. To proceed with the secure authentication process, please input the following One-Time Password (OTP).
|
|
|
|
<x-mail::panel>
|
|
{{ $otp }}
|
|
</x-mail::panel>
|
|
|
|
For security purposes, this verification code is valid for a single use and will expire in **{{ $expiresInMinutes }} minutes**. Please ensure the strict confidentiality of this credential. Authorized personnel will never solicit this code from you under any circumstances.
|
|
|
|
@if($ipAddress || $browser !== 'Unknown')
|
|
---
|
|
|
|
**Authentication Request Origin Details**
|
|
|
|
@if($requestedAt)
|
|
- Time: {{ $requestedAt }}
|
|
@endif
|
|
@if($ipAddress)
|
|
- IP address: {{ $ipAddress }}
|
|
@endif
|
|
@if($browser !== 'Unknown' || $os !== 'Unknown')
|
|
- Device: {{ $browser }} on {{ $os }}
|
|
@endif
|
|
@endif
|
|
|
|
If you did not explicitly authorize this access attempt, please disregard this communication. Should you persistently receive unauthorized verification requests, we strongly mandate an immediate review and update of your security credentials.
|
|
|
|
Sincerely,
|
|
**{{ config('app.name') }} Security Operations**
|
|
</x-mail::message>
|