140 lines
8.9 KiB
TypeScript
140 lines
8.9 KiB
TypeScript
/**
|
|
* Approver Skipped Email Template
|
|
*/
|
|
|
|
import { ApproverSkippedData } from './types';
|
|
import { getEmailFooter, getEmailHeader, HeaderStyles, wrapRichText, getResponsiveStyles } from './helpers';
|
|
import { getBrandedHeader } from './branding.config';
|
|
|
|
export function getApproverSkippedEmail(data: ApproverSkippedData): string {
|
|
return `
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Approver Skipped</title>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; background-color: #f4f4f4;">
|
|
<table role="presentation" style="width: 100%; border-collapse: collapse; background-color: #f4f4f4;" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td style="padding: 40px 0;">
|
|
<table role="presentation" style="width: 600px; margin: 0 auto; background-color: #ffffff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);" cellpadding="0" cellspacing="0">
|
|
${getEmailHeader(getBrandedHeader({
|
|
title: 'Approval Level Skipped',
|
|
...HeaderStyles.infoSecondary
|
|
}))}
|
|
|
|
<tr>
|
|
<td style="padding: 40px 30px;">
|
|
<p style="margin: 0 0 20px; color: #333333; font-size: 16px; line-height: 1.6;">
|
|
Dear <strong style="color: #17a2b8;">${data.recipientName}</strong>,
|
|
</p>
|
|
|
|
<p style="margin: 0 0 30px; color: #666666; font-size: 16px; line-height: 1.6;">
|
|
An approver has been skipped in the following request by <strong>${data.skippedByName}</strong>. The workflow has moved to the next approval level.
|
|
</p>
|
|
|
|
<table role="presentation" style="width: 100%; border-collapse: collapse; background-color: #d1ecf1; border: 1px solid #bee5eb; border-radius: 6px; margin-bottom: 30px;" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td style="padding: 25px;">
|
|
<h2 style="margin: 0 0 20px; color: #0c5460; font-size: 18px; font-weight: 600;">Request Details</h2>
|
|
|
|
<table role="presentation" style="width: 100%; border-collapse: collapse;" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px; width: 140px;">
|
|
<strong>Request ID:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
${data.requestId}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>Title:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
${data.requestTitle || 'N/A'}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>Skipped Approver:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>${data.skippedApproverName}</strong>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>Skipped By:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
${data.skippedByName}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>Skipped On:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
${data.skippedDate} at ${data.skippedTime}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>Next Approver:</strong>
|
|
</td>
|
|
<td style="padding: 8px 0; color: #0c5460; font-size: 14px;">
|
|
<strong>${data.nextApproverName}</strong>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div style="margin-bottom: 30px;">
|
|
<h3 style="margin: 0 0 15px; color: #333333; font-size: 16px; font-weight: 600;">Reason for Skipping:</h3>
|
|
<div style="padding: 15px; background-color: #f8f9fa; border-left: 4px solid #17a2b8; border-radius: 4px;">
|
|
${wrapRichText(data.skipReason)}
|
|
</div>
|
|
</div>
|
|
|
|
<div style="padding: 20px; background-color: #e7f3ff; border-left: 4px solid #0066cc; border-radius: 4px; margin-bottom: 30px;">
|
|
<h3 style="margin: 0 0 10px; color: #004085; font-size: 16px; font-weight: 600;">What This Means</h3>
|
|
<ul style="margin: 10px 0 0 0; padding-left: 20px; color: #004085; font-size: 14px; line-height: 1.8;">
|
|
<li>The approval process has moved to the next level</li>
|
|
<li>The skipped approver's action is no longer required</li>
|
|
<li>All stakeholders have been notified of this change</li>
|
|
<li>The workflow continues with remaining approvers</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<table role="presentation" style="width: 100%; border-collapse: collapse; margin-bottom: 20px;" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td style="text-align: center;">
|
|
<a href="${data.viewDetailsLink}" class="cta-button" style="display: inline-block; padding: 15px 40px; background-color: #1a1a1a; color: #ffffff; text-decoration: none; text-align: center; border-radius: 6px; font-size: 16px; font-weight: 600; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); min-width: 200px;">
|
|
View Request Details
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p style="margin: 0; color: #666666; font-size: 14px; line-height: 1.6; text-align: center;">
|
|
The workflow will continue with the next approver.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
${getEmailFooter(data.companyName)}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
`;
|
|
}
|
|
|