2024-10-09 22:31:52 +02:00
<!DOCTYPE html>
2024-12-07 17:36:05 +01:00
<html lang="en">
2024-10-09 22:31:52 +02:00
<head>
<meta charset="UTF-8">
2024-12-07 17:36:05 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>✅ Database Backup Successful – {{.Database}}</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f 8 f9fa ;
color: #333;
margin: 0;
padding: 20px;
}
h2 {
color: #5cb85c;
}
.details {
background-color: #ffffff ;
border: 1px solid #ddd ;
padding: 15px;
border-radius: 5px;
margin-top: 10px;
}
.details ul {
list-style-type: none;
padding: 0;
}
.details li {
margin: 5px 0;
}
a {
color: #0275d8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 20px;
font-size: 0.9em;
color: #6c757d;
}
</style>
2024-10-09 22:31:52 +02:00
</head>
<body>
2024-12-07 17:36:05 +01:00
<h2>✅ Database Backup Successful</h2>
2024-12-12 13:28:09 +01:00
<p>Hi,</p>
2024-12-07 17:36:05 +01:00
<p>The backup process for the <strong>{{.Database}}</strong> database was successfully completed. Please find the details below:</p>
<div class="details">
<h3>Backup Details:</h3>
<ul>
<li><strong>Database Name:</strong> {{.Database}}</li>
<li><strong>Backup Start Time:</strong> {{.StartTime}}</li>
<li><strong>Backup End Time:</strong> {{.EndTime}}</li>
<li><strong>Backup Storage:</strong> {{.Storage}}</li>
<li><strong>Backup Location:</strong> {{.BackupLocation}}</li>
2024-12-12 13:28:09 +01:00
<li><strong>Backup Size:</strong> {{.BackupSize}}</li>
2024-12-07 17:36:05 +01:00
<li><strong>Backup Reference:</strong> {{.BackupReference}}</li>
</ul>
</div>
<p>You can access the backup at the specified location if needed. Thank you for using <a href="https://jkaninda.github.io/mysql-bkup/">mysql-bkup</a>.</p>
<footer>
© 2024 <a href="https://github.com/jkaninda/mysql-bkup">mysql-bkup</a> | Automated Backup System
</footer>
2024-10-09 22:31:52 +02:00
</body>
2024-12-07 17:36:05 +01:00
</html>