HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/public_html/printmanager/resources/views/email/registration/approve.blade.php
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>Printer was approved to the {{ env('APP_NAME', 'Manage Printers By POS Scales & Surveillance'),}}</title>
    <style>
        /* Inline styles for simplicity, consider using CSS classes for larger templates */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: #ffffff;
        }

        .logo {
            text-align: center;
            background-color: #28166f;
            padding: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border: 1px solid #28166f;
        }

        .logo img {
            max-width: 140px;
            background-color: #ffffff;
            padding: 10px;
            border-radius: 10px;
        }

        .message {
            padding: 20px;
            background-color: #ffffff;
            color: #28166f;
            border: 1px solid #28166f;
            padding-bottom: 40px;
            padding-top: 40px;
            min-height: 250px;
        }

        .message p {
            margin-bottom: 10px;
        }

        .footer {
            text-align: center;
            padding: 20px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            color: #fff;
            background-color: #28166f;
            border: 1px solid #28166f;

        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="logo">
            <img src="{{ env('APP_LOGO', 'https://posscales.com.au/WP-POS/wp-content/uploads/2018/05/cropped-pos-logo-1-1.png'),}}" alt="">
        </div>
        <div class="message">
            <p>Dear <strong>{{ $mailData['user_name'] }}</strong>,</p>
            <p>Your request was accepted and you can access your site on <a href="https://{{ $mailData['domain'] }}">{{ $mailData['domain'] }}</a>.</p> 
            <p>Login credentials is which you setup white registring site.</p>

            {!! $mailData['message'] !!}
        </div>
        <div class="footer">
            <a href="https://posscales.com.au/"> {{ env('APP_NAME', 'Manage Printers By POS Scales & Surveillance')}}</a>
        </div>

    </div>
</body>

</html>