Re_Backend/src/emailtemplates/tatBreached.template.ts

149 lines
9.6 KiB
TypeScript

/**
* TAT Breached Email Template
*/
import { TATBreachedData } from './types';
import { getEmailFooter, getEmailHeader, HeaderStyles } from './helpers';
import { getBrandedHeader } from './branding.config';
export function getTATBreachedEmail(data: TATBreachedData): string {
return `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TAT Breached - Urgent Action Required</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: 'TAT Breached',
subtitle: 'Immediate Action Required',
...HeaderStyles.error
}))}
<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: #dc3545;">${data.approverName}</strong>,
</p>
<p style="margin: 0 0 30px; color: #666666; font-size: 16px; line-height: 1.6;">
The TAT (Turn Around Time) for the following request has been <strong style="color: #dc3545;">BREACHED</strong>. This request requires your immediate attention.
</p>
<table role="presentation" style="width: 100%; border-collapse: collapse; background-color: #f8d7da; border: 1px solid #f5c6cb; border-radius: 6px; margin-bottom: 30px;" cellpadding="0" cellspacing="0">
<tr>
<td style="padding: 25px;">
<h2 style="margin: 0 0 20px; color: #721c24; 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: #721c24; font-size: 14px; width: 140px;">
<strong>Request ID:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.requestId}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>Title:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.requestTitle || 'N/A'}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>Initiator:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.initiatorName}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>Priority:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.priority}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>Assigned On:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.assignedDate}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>TAT Deadline:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
${data.tatDeadline}
</td>
</tr>
<tr>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>Time Overdue:</strong>
</td>
<td style="padding: 8px 0; color: #721c24; font-size: 14px;">
<strong>${data.timeOverdue}</strong>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div style="padding: 20px; background-color: #f8d7da; border-left: 4px solid #dc3545; border-radius: 4px; margin-bottom: 30px;">
<h3 style="margin: 0 0 10px; color: #721c24; font-size: 16px; font-weight: 600;">Critical Alert</h3>
<p style="margin: 0; color: #721c24; font-size: 14px; line-height: 1.6;">
The TAT for this request has expired. Please take immediate action to avoid further delays. Management and the initiator have been notified of this breach.
</p>
</div>
<div style="padding: 20px; background-color: #fff3cd; border-left: 4px solid #ffc107; border-radius: 4px; margin-bottom: 30px;">
<h3 style="margin: 0 0 10px; color: #856404; font-size: 16px; font-weight: 600;">Impact Notice</h3>
<ul style="margin: 10px 0 0 0; padding-left: 20px; color: #856404; font-size: 14px; line-height: 1.8;">
<li>This breach is being tracked in system metrics</li>
<li>The workflow is experiencing delays</li>
<li>Stakeholders are awaiting your decision</li>
<li>Your manager may have been notified</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;">
Your immediate action is critical to resolve this delay.
</p>
</td>
</tr>
${getEmailFooter(data.companyName)}
</table>
</td>
</tr>
</table>
</body>
</html>
`;
}