HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers42/tandartsmaas.nl/app/storage/views/c7d8901df269e1d19326f5e92cba5d12
<?php

$colors = new stdClass();
$colors->red = '#FF8767';
$colors->blue = '#95CEE6';
$colors->text = '#52405B';
$colors->green = '#9CE7A4';
$colors->purple = '#5B4E62';
$colors->yellow = '#F5EC82';
$colors->background = '#E7E6EC';

$attributes = new stdClass();
$attributes->cleanTable = 'cellpadding="0" cellspacing="0" border="0"';

$styles = new stdClass();
$styles->containerWidth = 'width: 100%; min-width: 320px; max-width: 600px; ';
$styles->button = 'display: inline-block; max-width: 200px; padding: 10px 20px; border-radius: 5px; background: ' . $colors->red . '; color: #fff;';

$font = new stdClass();
$font->default = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 400; line-height: 1.4;';
$font->title = 'font-family: Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 700; line-height: 1.4;';
$font->button = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4;';

$url = new stdClass();
$url->image = 'https://tandartsmaas.nl/images/emails/';

?>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="utf-8">
</head>

<style type="text/css">
    @media  screen and (max-width: 480px) {
        .stack{
            display: block;
            width: 100%;
        }

        .stack.header{
            text-align: center;
        }

        .stack.header img{
            display: inline-block;
        }

        .text-logo
        {
            width: 208px
        }

        .container
        {
            width: 100% !important;
        }
    }
</style>

<body background="<?php echo $url->image; ?>background.jpg" style="margin: 0; background: <?php echo $colors->background; ?> url(<?php echo $url->image; ?>background.jpg)">

<center>
    <table class="container" <?php echo $attributes->cleanTable; ?> width="600" style="width: 600px">
        <tr>
            <td>
                <table <?php echo $attributes->cleanTable; ?>

                       style="
                        <?php echo $styles->containerWidth; ?>;
                        background: #fff;
                        margin: 0 auto;">

                    <?php /* Header */ ?>

                    <tr>
                        <td>
                            <?php echo $__env->make('emails.template.header',[
                                'colors' => $colors,
                                'attributes' => $attributes,
                                'styles' => $styles,
                                'font' => $font,
                                'url' => $url
                            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        </td>
                    </tr>

                    <?php /* Title */ ?>

                    <tr>
                        <td>
                            <?php echo $__env->make('emails.template.title',[
                                'colors' => $colors,
                                'attributes' => $attributes,
                                'styles' => $styles,
                                'font' => $font
                            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        </td>
                    </tr>

                    <?php /* Message */ ?>

                    <tr>
                        <td>
                            <?php echo $__env->make('emails.template.message',[
                                'colors' => $colors,
                                'attributes' => $attributes,
                                'styles' => $styles,
                                'font' => $font
                            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        </td>
                    </tr>

                    <?php /* Green bar */ ?>

                    <tr>
                        <td>
                            <?php echo $__env->make('emails.template.greenBar',[
                                'colors' => $colors,
                                'attributes' => $attributes,
                                'styles' => $styles,
                                'font' => $font
                            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        </td>
                    </tr>

                    <?php /* Footer */ ?>

                    <tr>
                        <td>
                            <?php echo $__env->make('emails.template.footer',[
                                'colors' => $colors,
                                'attributes' => $attributes,
                                'styles' => $styles,
                                'font' => $font,
                                'url' => $url
                            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        </td>
                    </tr>

                </table>
                </td>
            </tr>
        </table>
    </center>
</body>
</html>