2022-01-18 13:04:08 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Local variables.
|
2023-02-21 09:58:21 +03:00
|
|
|
*
|
|
|
|
* @var string $subject
|
|
|
|
* @var string $message
|
|
|
|
* @var array $settings
|
2022-01-18 13:04:08 +03:00
|
|
|
*/
|
|
|
|
?>
|
2020-04-22 22:48:56 +03:00
|
|
|
<html lang="en">
|
2016-01-09 23:29:28 +02:00
|
|
|
<head>
|
2023-02-21 09:58:21 +03:00
|
|
|
<title><?= $subject ?> | Easy!Appointments</title>
|
2016-01-09 23:29:28 +02:00
|
|
|
</head>
|
|
|
|
<body style="font: 13px arial, helvetica, tahoma;">
|
2023-02-21 09:58:21 +03:00
|
|
|
|
2020-09-23 14:55:48 +03:00
|
|
|
<div class="email-container" style="width: 650px; border: 1px solid #eee;">
|
|
|
|
<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">
|
2023-03-13 10:18:39 +03:00
|
|
|
<?= e($settings['company_name']) ?>
|
2020-09-23 14:55:48 +03:00
|
|
|
</strong>
|
|
|
|
</div>
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2020-09-23 14:55:48 +03:00
|
|
|
<div id="content" style="padding: 10px 15px;">
|
2023-02-20 10:43:00 +03:00
|
|
|
<h2>
|
2023-02-21 09:58:21 +03:00
|
|
|
<?= $subject ?>
|
2023-02-20 10:43:00 +03:00
|
|
|
</h2>
|
|
|
|
<p>
|
2023-02-21 09:58:21 +03:00
|
|
|
<?= $message ?>
|
2023-02-20 10:43:00 +03:00
|
|
|
</p>
|
2020-09-23 14:55:48 +03:00
|
|
|
</div>
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2020-09-23 14:55:48 +03:00
|
|
|
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
|
2016-01-09 23:29:28 +02:00
|
|
|
border-top: 1px solid #EEE; background: #FAFAFA;">
|
2020-09-23 14:55:48 +03:00
|
|
|
Powered by
|
2023-02-20 10:43:00 +03:00
|
|
|
<a href="https://easyappointments.org" style="text-decoration: none;">
|
|
|
|
Easy!Appointments
|
|
|
|
</a>
|
2020-09-23 14:55:48 +03:00
|
|
|
|
|
2023-02-21 09:58:21 +03:00
|
|
|
<a href="<?= $settings['company_link'] ?>" style="text-decoration: none;">
|
2023-03-13 10:18:39 +03:00
|
|
|
<?= e($settings['company_name']) ?>
|
2023-02-20 10:43:00 +03:00
|
|
|
</a>
|
2016-01-09 23:29:28 +02:00
|
|
|
</div>
|
2020-09-23 14:55:48 +03:00
|
|
|
</div>
|
2023-02-21 09:58:21 +03:00
|
|
|
|
2016-01-09 23:29:28 +02:00
|
|
|
</body>
|
|
|
|
</html>
|