Skip to content

Commit

Permalink
Merge pull request #26 from louisv20/dev
Browse files Browse the repository at this point in the history
Created html email template
  • Loading branch information
zaidi201 authored Jun 19, 2024
2 parents f72cfe3 + 2d76c47 commit 1363704
Show file tree
Hide file tree
Showing 21 changed files with 1,878 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
![](https://img.shields.io/github/license/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/repo-size/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/commit-activity/w/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/last-commit/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/languages/top/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/issues-pr/bluewave-labs/bluewave-hrm)
![](https://img.shields.io/github/issues/bluewave-labs/bluewave-hrm)


# BlueWave HR

The BlueWave HR is a people and resource management application for your organization. It has the following features:
Expand Down
93 changes: 93 additions & 0 deletions src/templates/hrm/employee_leaving/to_employee_manager.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 10px auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 10px;
}
.logo {
text-align: center;
margin-bottom: 10px;
}
.logo img {
max-width: 150px;
height: auto;
}
.header {
padding: 10px 0;
text-align: left;
}
.header h2 {
margin: 0;
font-size: 24px;
font-weight: bold;
text-align: left;
}
.content {
padding: 20px 0;
}
.footer {
text-align: center;
padding: 10px 0;
font-size: 12px;
color: #888888;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 20px 0;
font-size: 16px;
color: #ffffff;
background-color: #471aa2d4;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #471aa2;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo Section -->
<div class="logo">
<img src="C:\Users\27lou\Desktop\Projects\bluewave-hrm\src\templates\images\enthalpy_logo.png" alt="Company Logo">
</div>

<!-- Header Section -->
<div class="header">
<h2>Employee Exit Notification</h2>
</div>

<!-- Content Section -->
<div class="content">
<p>Dear [Manager Name],</p>
<p>We regret to inform you that [Employee Name] has left the company. Please update the company records accordingly.</p>
<p>If you have any questions or need further assistance, please contact us at [Support Email].</p>
<p>Best regards,<br/>[Company Name] HR Team</p>

<!-- Call to Action Button -->
<div style="text-align: center;">
<a href="#" class="btn">Contact HR</a>
</div>
</div>

<!-- Footer Section -->
<div class="footer">
<p>&copy; [Year] [Company Name]. All rights reserved.</p>
</div>
</div>
</body>
</html>
94 changes: 94 additions & 0 deletions src/templates/hrm/employee_leaving/to_hr_manager.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 10px auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 10px;
}
.logo {
text-align: center;
margin-bottom: 10px;
}
.logo img {
max-width: 150px;
height: auto;
}
.header {
padding: 10px 0;
text-align: left;
}
.header h2 {
margin: 0;
font-size: 24px;
font-weight: bold;
text-align: left;
}
.content {
padding: 20px 0;
}
.footer {
text-align: center;
padding: 10px 0;
font-size: 12px;
color: #888888;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 20px 0;
font-size: 16px;
color: #ffffff;
background-color: #471aa2d4;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #471aa2;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo Section -->
<div class="logo">
<img src="C:\Users\27lou\Desktop\Projects\bluewave-hrm\src\templates\images\enthalpy_logo.png" alt="Company Logo">
</div>

<!-- Header Section -->
<div class="header">
<h2>Employee Exit Notification</h2>
</div>

<!-- Content Section -->
<div class="content">
<p>Dear [HR Manager Name],</p>
<p>We regret to inform you that [Employee Name] has left the company. Please update the company records accordingly.</p>
<p>If you have any questions or need further assistance, please contact us at [Support Email].</p>
<p>Best regards,<br/>[Company Name] HR Team</p>


<!-- Call to Action Button -->
<div style="text-align: center;">
<a href="#" class="btn">Contact HR</a>
</div>
</div>

<!-- Footer Section -->
<div class="footer">
<p>&copy; [Year] [Company Name]. All rights reserved.</p>
</div>
</div>
</body>
</html>
93 changes: 93 additions & 0 deletions src/templates/hrm/jobchange/to_employee.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 10px auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 10px;
}
.logo {
text-align: center;
margin-bottom: 10px;
}
.logo img {
max-width: 150px;
height: auto;
}
.header {
padding: 10px 0;
text-align: left;
}
.header h2 {
margin: 0;
font-size: 24px;
font-weight: bold;
text-align: left;
}
.content {
padding: 20px 0;
}
.footer {
text-align: center;
padding: 10px 0;
font-size: 12px;
color: #888888;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 20px 0;
font-size: 16px;
color: #ffffff;
background-color: #471aa2d4;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #471aa2;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo Section -->
<div class="logo">
<img src="C:\Users\27lou\Desktop\Projects\bluewave-hrm\src\templates\images\enthalpy_logo.png" alt="Company Logo">
</div>

<!-- Header Section -->
<div class="header">
<h2>Job Description Update</h2>
</div>
<div class="content">
<p>Dear [Employee Name],</p>
<p>Your job desription at [Company Name] has been updated. Please review the changes in the HRM system.</p>
<p>If you have any questions or need further clarification, please do not hesitate to contact us.</p>
<p>Best regards,<br/>[Company Name] HR Team</p>


<!-- Call to Action Button -->
<div style="text-align: center;">
<a href="#" class="btn">Contact HR</a>
</div>
</div>

<!-- Footer Section -->
<div class="footer">
<p>&copy; [Year] [Company Name]. All rights reserved.</p>
</div>
</div>
</body>
</html>

93 changes: 93 additions & 0 deletions src/templates/hrm/jobchange/to_employee_manager.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 10px auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 10px;
}
.logo {
text-align: center;
margin-bottom: 10px;
}
.logo img {
max-width: 150px;
height: auto;
}
.header {
padding: 10px 0;
text-align: left;
}
.header h2 {
margin: 0;
font-size: 24px;
font-weight: bold;
text-align: left;
}
.content {
padding: 20px 0;
}
.footer {
text-align: center;
padding: 10px 0;
font-size: 12px;
color: #888888;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 20px 0;
font-size: 16px;
color: #ffffff;
background-color: #471aa2d4;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #471aa2;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo Section -->
<div class="logo">
<img src="C:\Users\27lou\Desktop\Projects\bluewave-hrm\src\templates\images\enthalpy_logo.png" alt="Company Logo">
</div>

<!-- Header Section -->
<div class="header">
<h2>Employee Job Description Update</h2>
</div>
<div class="content">
<p>Dear [Manager Name],</p>
<p>The job description for [Employee Name] at [Company Name] has been updated. Please review the changes in the HRM system.</p>
<p>If you have any questions or need further clarification, please do not hesitate to contact us.</p>
<p>Best regards,<br/>[Company Name] HR Team</p>


<!-- Call to Action Button -->
<div style="text-align: center;">
<a href="#" class="btn">Contact HR</a>
</div>
</div>

<!-- Footer Section -->
<div class="footer">
<p>&copy; [Year] [Company Name]. All rights reserved.</p>
</div>
</div>
</body>
</html>

Loading

0 comments on commit 1363704

Please sign in to comment.