mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 01:23:10 +03:00
27 lines
1,015 B
PHP
27 lines
1,015 B
PHP
<html lang="en">
|
|
<head>
|
|
<title>New Password | Easy!Appointments</title>
|
|
</head>
|
|
<body style="font: 13px arial, helvetica, tahoma;">
|
|
<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">
|
|
<?= $company_name ?>
|
|
</strong>
|
|
</div>
|
|
|
|
<div id="content" style="padding: 10px 15px;">
|
|
<h2><?= $email_title ?></h2>
|
|
<p><?= $email_message ?></p>
|
|
</div>
|
|
|
|
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
|
|
border-top: 1px solid #EEE; background: #FAFAFA;">
|
|
Powered by
|
|
<a href="https://easyappointments.org" style="text-decoration: none;">Easy!Appointments</a>
|
|
|
|
|
<a href="<?= $company_link ?>" style="text-decoration: none;"><?= $company_name ?></a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|