fix(audit): wire 6 missing email subject overrides (R2-H14)
Admin-editable subject overrides at /admin/email-templates were no-ops for 6 of 8 templates — only portal_activation and portal_reset called loadSubjectOverride. Added a shared resolveSubject() helper and wired it into the missing senders: - crm_invite + portal_invite_resend (crm-invite.service.ts) - inquiry_client_confirmation (email worker via portId on job payload) - inquiry_sales_notification (email worker via portId on job payload) - residential_inquiry_client_confirmation (residential-inquiries route) - residential_inquiry_sales_alert (residential-inquiries route) The inquiry email worker payloads now carry portId + portName so the worker can resolve the per-port override; producers in inquiry- notifications.service.ts pass them through. 1175/1175 vitest passing. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -11,6 +11,7 @@ import {
|
|||||||
residentialClientConfirmation,
|
residentialClientConfirmation,
|
||||||
residentialSalesAlert,
|
residentialSalesAlert,
|
||||||
} from '@/lib/email/templates/residential-inquiry';
|
} from '@/lib/email/templates/residential-inquiry';
|
||||||
|
import { resolveSubject } from '@/lib/email/resolve-subject';
|
||||||
import { env } from '@/lib/env';
|
import { env } from '@/lib/env';
|
||||||
import { errorResponse, RateLimitError, ValidationError } from '@/lib/errors';
|
import { errorResponse, RateLimitError, ValidationError } from '@/lib/errors';
|
||||||
import { logger } from '@/lib/logger';
|
import { logger } from '@/lib/logger';
|
||||||
@@ -145,7 +146,13 @@ async function sendResidentialNotifications(args: {
|
|||||||
firstName: data.firstName,
|
firstName: data.firstName,
|
||||||
contactEmail: 'sales@portnimara.com',
|
contactEmail: 'sales@portnimara.com',
|
||||||
});
|
});
|
||||||
await sendEmail(data.email, confirmation.subject, confirmation.html);
|
const confirmationSubject = await resolveSubject({
|
||||||
|
key: 'residential_inquiry_client_confirmation',
|
||||||
|
portId,
|
||||||
|
fallback: confirmation.subject,
|
||||||
|
tokens: { portName: 'Port Nimara', recipientName: data.firstName },
|
||||||
|
});
|
||||||
|
await sendEmail(data.email, confirmationSubject, confirmation.html);
|
||||||
|
|
||||||
// Sales-team alert - pull recipients from system_settings if configured;
|
// Sales-team alert - pull recipients from system_settings if configured;
|
||||||
// fall back to the inquiry_contact_email if available.
|
// fall back to the inquiry_contact_email if available.
|
||||||
@@ -184,6 +191,17 @@ async function sendResidentialNotifications(args: {
|
|||||||
preferences: data.preferences,
|
preferences: data.preferences,
|
||||||
crmDeepLink,
|
crmDeepLink,
|
||||||
});
|
});
|
||||||
|
const alertSubject = await resolveSubject({
|
||||||
|
key: 'residential_inquiry_sales_alert',
|
||||||
|
portId,
|
||||||
|
fallback: alert.subject,
|
||||||
|
tokens: {
|
||||||
|
portName: 'Port Nimara',
|
||||||
|
clientName: `${data.firstName} ${data.lastName}`.trim(),
|
||||||
|
email: data.email,
|
||||||
|
phone: data.phone,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
await sendEmail(recipients, alert.subject, alert.html);
|
await sendEmail(recipients, alertSubject, alert.html);
|
||||||
}
|
}
|
||||||
|
|||||||
34
src/lib/email/resolve-subject.ts
Normal file
34
src/lib/email/resolve-subject.ts
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
/**
|
||||||
|
* Helper that turns a template key + per-port settings into a final
|
||||||
|
* subject line. Centralises the override-resolution + token-substitution
|
||||||
|
* pattern so every transactional email sender is one call away from
|
||||||
|
* honoring the admin's `email_template_<key>_subject` override.
|
||||||
|
*
|
||||||
|
* Wire-up (per send site):
|
||||||
|
* const subject = await resolveSubject({
|
||||||
|
* key: 'crm_invite',
|
||||||
|
* portId,
|
||||||
|
* fallback: result.subject,
|
||||||
|
* tokens: { portName, recipientName: data.recipientName, ttlHours: 48 },
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* The override is read from `system_settings.email_template_<key>_subject`.
|
||||||
|
* If unset / empty / non-string, the `fallback` is returned as-is.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { loadSubjectOverride, applySubjectTokens } from '@/lib/email/template-overrides';
|
||||||
|
import type { TemplateKey } from '@/lib/email/template-catalog';
|
||||||
|
|
||||||
|
export async function resolveSubject(args: {
|
||||||
|
key: TemplateKey;
|
||||||
|
/** Optional — when omitted (e.g. system-level emails with no port
|
||||||
|
* context), only the fallback subject is returned. */
|
||||||
|
portId?: string | null;
|
||||||
|
fallback: string;
|
||||||
|
tokens?: Record<string, string | number | undefined>;
|
||||||
|
}): Promise<string> {
|
||||||
|
if (!args.portId) return args.fallback;
|
||||||
|
const override = await loadSubjectOverride(args.portId, args.key);
|
||||||
|
if (!override) return args.fallback;
|
||||||
|
return args.tokens ? applySubjectTokens(override, args.tokens) : override;
|
||||||
|
}
|
||||||
@@ -18,31 +18,48 @@ export const emailWorker = new Worker(
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'send-inquiry-confirmation': {
|
case 'send-inquiry-confirmation': {
|
||||||
const { to, firstName, mooringNumber, contactEmail } = job.data as {
|
const { to, firstName, mooringNumber, contactEmail, portId, portName } = job.data as {
|
||||||
to: string;
|
to: string;
|
||||||
firstName: string;
|
firstName: string;
|
||||||
mooringNumber: string | null;
|
mooringNumber: string | null;
|
||||||
contactEmail: string;
|
contactEmail: string;
|
||||||
|
portId?: string;
|
||||||
|
portName?: string;
|
||||||
};
|
};
|
||||||
const { inquiryClientConfirmation } =
|
const { inquiryClientConfirmation } =
|
||||||
await import('@/lib/email/templates/inquiry-client-confirmation');
|
await import('@/lib/email/templates/inquiry-client-confirmation');
|
||||||
const { sendEmail } = await import('@/lib/email/index');
|
const { sendEmail } = await import('@/lib/email/index');
|
||||||
|
const { resolveSubject } = await import('@/lib/email/resolve-subject');
|
||||||
const email = inquiryClientConfirmation({ firstName, mooringNumber, contactEmail });
|
const email = inquiryClientConfirmation({ firstName, mooringNumber, contactEmail });
|
||||||
await sendEmail(to, email.subject, email.html, undefined, email.text);
|
const subject = await resolveSubject({
|
||||||
|
key: 'inquiry_client_confirmation',
|
||||||
|
portId,
|
||||||
|
fallback: email.subject,
|
||||||
|
tokens: {
|
||||||
|
portName: portName ?? 'Port Nimara',
|
||||||
|
recipientName: firstName,
|
||||||
|
mooringNumber: mooringNumber ?? '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
await sendEmail(to, subject, email.html, undefined, email.text, portId);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'send-inquiry-sales-notification': {
|
case 'send-inquiry-sales-notification': {
|
||||||
const { to, fullName, email, phone, mooringNumber, crmUrl } = job.data as {
|
const { to, fullName, email, phone, mooringNumber, crmUrl, portId, portName } =
|
||||||
|
job.data as {
|
||||||
to: string;
|
to: string;
|
||||||
fullName: string;
|
fullName: string;
|
||||||
email: string;
|
email: string;
|
||||||
phone: string;
|
phone: string;
|
||||||
mooringNumber: string | null;
|
mooringNumber: string | null;
|
||||||
crmUrl: string;
|
crmUrl: string;
|
||||||
|
portId?: string;
|
||||||
|
portName?: string;
|
||||||
};
|
};
|
||||||
const { inquirySalesNotification } =
|
const { inquirySalesNotification } =
|
||||||
await import('@/lib/email/templates/inquiry-sales-notification');
|
await import('@/lib/email/templates/inquiry-sales-notification');
|
||||||
const { sendEmail } = await import('@/lib/email/index');
|
const { sendEmail } = await import('@/lib/email/index');
|
||||||
|
const { resolveSubject } = await import('@/lib/email/resolve-subject');
|
||||||
const notification = inquirySalesNotification({
|
const notification = inquirySalesNotification({
|
||||||
fullName,
|
fullName,
|
||||||
email,
|
email,
|
||||||
@@ -50,7 +67,18 @@ export const emailWorker = new Worker(
|
|||||||
mooringNumber,
|
mooringNumber,
|
||||||
crmUrl,
|
crmUrl,
|
||||||
});
|
});
|
||||||
await sendEmail(to, notification.subject, notification.html, undefined, notification.text);
|
const subject = await resolveSubject({
|
||||||
|
key: 'inquiry_sales_notification',
|
||||||
|
portId,
|
||||||
|
fallback: notification.subject,
|
||||||
|
tokens: {
|
||||||
|
portName: portName ?? 'Port Nimara',
|
||||||
|
clientName: fullName,
|
||||||
|
mooringNumber: mooringNumber ?? '',
|
||||||
|
email,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
await sendEmail(to, subject, notification.html, undefined, notification.text, portId);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { userProfiles } from '@/lib/db/schema/users';
|
|||||||
import { env } from '@/lib/env';
|
import { env } from '@/lib/env';
|
||||||
import { sendEmail } from '@/lib/email';
|
import { sendEmail } from '@/lib/email';
|
||||||
import { crmInviteEmail } from '@/lib/email/templates/crm-invite';
|
import { crmInviteEmail } from '@/lib/email/templates/crm-invite';
|
||||||
|
import { resolveSubject } from '@/lib/email/resolve-subject';
|
||||||
import { CodedError, ConflictError, NotFoundError, ValidationError } from '@/lib/errors';
|
import { CodedError, ConflictError, NotFoundError, ValidationError } from '@/lib/errors';
|
||||||
import { hashToken, mintToken } from '@/lib/portal/passwords';
|
import { hashToken, mintToken } from '@/lib/portal/passwords';
|
||||||
|
|
||||||
@@ -67,14 +68,26 @@ export async function createCrmInvite(args: {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
||||||
const { subject, html, text } = crmInviteEmail({
|
const result = crmInviteEmail({
|
||||||
link,
|
link,
|
||||||
ttlHours: INVITE_TTL_HOURS,
|
ttlHours: INVITE_TTL_HOURS,
|
||||||
recipientName: args.name,
|
recipientName: args.name,
|
||||||
isSuperAdmin,
|
isSuperAdmin,
|
||||||
});
|
});
|
||||||
|
// CRM invites are global (no portId at create-invite time). The
|
||||||
|
// override resolver returns the fallback when portId is null.
|
||||||
|
const subject = await resolveSubject({
|
||||||
|
key: 'crm_invite',
|
||||||
|
portId: null,
|
||||||
|
fallback: result.subject,
|
||||||
|
tokens: {
|
||||||
|
portName: 'Port Nimara',
|
||||||
|
recipientName: args.name ?? '',
|
||||||
|
ttlHours: INVITE_TTL_HOURS,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
await sendEmail(email, subject, html, undefined, text);
|
await sendEmail(email, subject, result.html, undefined, result.text);
|
||||||
|
|
||||||
return { inviteId: row.id, link };
|
return { inviteId: row.id, link };
|
||||||
}
|
}
|
||||||
@@ -217,13 +230,25 @@ export async function resendCrmInvite(
|
|||||||
.where(eq(crmUserInvites.id, inviteId));
|
.where(eq(crmUserInvites.id, inviteId));
|
||||||
|
|
||||||
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
||||||
const { subject, html, text } = crmInviteEmail({
|
const result = crmInviteEmail({
|
||||||
link,
|
link,
|
||||||
ttlHours: INVITE_TTL_HOURS,
|
ttlHours: INVITE_TTL_HOURS,
|
||||||
recipientName: invite.name ?? undefined,
|
recipientName: invite.name ?? undefined,
|
||||||
isSuperAdmin: invite.isSuperAdmin,
|
isSuperAdmin: invite.isSuperAdmin,
|
||||||
});
|
});
|
||||||
await sendEmail(invite.email, subject, html, undefined, text);
|
// Resend uses the dedicated portal_invite_resend key so admins can
|
||||||
|
// word the resend differently from the original.
|
||||||
|
const subject = await resolveSubject({
|
||||||
|
key: 'portal_invite_resend',
|
||||||
|
portId: meta.portId ?? null,
|
||||||
|
fallback: result.subject,
|
||||||
|
tokens: {
|
||||||
|
portName: 'Port Nimara',
|
||||||
|
recipientName: invite.name ?? '',
|
||||||
|
ttlHours: INVITE_TTL_HOURS,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
await sendEmail(invite.email, subject, result.html, undefined, result.text);
|
||||||
|
|
||||||
void createAuditLog({
|
void createAuditLog({
|
||||||
userId: meta.userId,
|
userId: meta.userId,
|
||||||
|
|||||||
@@ -53,6 +53,8 @@ export async function sendInquiryNotifications(params: InquiryNotificationParams
|
|||||||
firstName,
|
firstName,
|
||||||
mooringNumber,
|
mooringNumber,
|
||||||
contactEmail,
|
contactEmail,
|
||||||
|
portId,
|
||||||
|
portName: 'Port Nimara', // future: resolve from getPortBrandingConfig
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error({ err, interestId }, 'Failed to queue client confirmation email');
|
logger.error({ err, interestId }, 'Failed to queue client confirmation email');
|
||||||
@@ -120,6 +122,8 @@ export async function sendInquiryNotifications(params: InquiryNotificationParams
|
|||||||
phone: clientPhone,
|
phone: clientPhone,
|
||||||
mooringNumber,
|
mooringNumber,
|
||||||
crmUrl,
|
crmUrl,
|
||||||
|
portId,
|
||||||
|
portName: 'Port Nimara',
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user