Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created html email template #26

Merged
merged 8 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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