iflrandevu/application/views/emails/account_recovery_email.php

47 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* Local variables.
*
* @var string $subject
* @var string $message
* @var array $settings
*/
?>
<html lang="en">
<head>
<title><?= $subject ?> | Easy!Appointments</title>
</head>
<body style="font: 13px arial, helvetica, tahoma;">
<div class="email-container" style="width: 650px; border: 1px solid #eee; margin: 30px auto;">
2020-09-23 14:55:48 +03:00
<div id="header" style="background-color: #429a82; height: 45px; padding: 10px 15px;">
<strong id="logo" style="color: white; font-size: 20px; margin-top: 10px; display: inline-block">
<?= e($settings['company_name']) ?>
2020-09-23 14:55:48 +03:00
</strong>
</div>
<div id="content" style="padding: 10px 15px; min-height: 400px">
<h2>
<?= $subject ?>
</h2>
<p>
<?= $message ?>
</p>
2020-09-23 14:55:48 +03:00
</div>
2020-09-23 14:55:48 +03:00
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
border-top: 1px solid #EEE; background: #FAFAFA;">
2020-09-23 14:55:48 +03:00
Powered by
<a href="https://easyappointments.org" style="text-decoration: none;">
Easy!Appointments
</a>
2020-09-23 14:55:48 +03:00
|
<a href="<?= $settings['company_link'] ?>" style="text-decoration: none;">
<?= e($settings['company_name']) ?>
</a>
</div>
2020-09-23 14:55:48 +03:00
</div>
</body>
</html>