| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <html>
<head>
        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Calibri">
        <style>
            body {
                font-family:Calibri;
            }
        </style>
    </head>
    <body>
        <h1>Source Week Request</h1>
        <p>A user has requested an unavailable week to be sourced out on their behalf.</p>
        <h2>Details</h2>
        <p><strong>User Details</strong></p>
        <p>Name : {{ $user->name }} {{ $user->surname }} </p>
        <p>Email : {{ $user->email }} </p>
        <p>Contact Number : {{ $user->mobile }} </p>
        <hr>
        <p><strong>Resort Details</strong></p>
        <p>Resort : {{ $resort }}</p>
        <p>Region : {{ $region }} </p>
        <p>Minimum Price : R {{ $minPrice }} </p>
        <p>Maximum Price : R {{ $maxPrice }} </p>
        <p>Arrival Dates From : {{ $fromDate }}</p>
        <p>Departure Dates From : {{ $toDate }}</p>
        <hr>
        <p>Regards,<br>
        The Uni-Vate Properties Team
        </p>
        <img src="https://www.univateproperties.co.za/images/signature.png" />
    </body>
</html>
 |