| 12345678910111213141516171819202122 | <html>
<head>
        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Calibri">
        <style>
            body {
                font-family:Calibri;
            }
        </style>
    </head>
    <body>
        <p>Dear {{ $user->name }},</p>
        <p>Your username is {{ $user->username }}</p>
        
        <p>Regards,<br>
        The Uni-Vate Properties Team
        </p>
        <img src="https://www.univateproperties.co.za/images/signature.png" />
    </body>
</html>
 |