mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 18:21:32 +10:00
## Description Support setting a document language that will control the language used for sending emails to recipients. Additional work has been done to convert all emails to using our i18n implementation so we can later add controls for sending other kinds of emails in a users target language. ## Related Issue N/A ## Changes Made - Added `<Trans>` and `msg` macros to emails - Introduced a new `renderEmailWithI18N` utility in the lib package - Updated all emails to use the `<Tailwind>` component at the top level due to rendering constraints - Updated the `i18n.server.tsx` file to not use a top level await ## Testing Performed - Configured document language and verified emails were sent in the expected language - Created a document from a template and verified that the templates language was transferred to the document
207 lines
6.4 KiB
TypeScript
207 lines
6.4 KiB
TypeScript
import { createElement } from 'react';
|
|
|
|
import { msg } from '@lingui/macro';
|
|
import { z } from 'zod';
|
|
|
|
import { mailer } from '@documenso/email/mailer';
|
|
import DocumentInviteEmailTemplate from '@documenso/email/templates/document-invite';
|
|
import { prisma } from '@documenso/prisma';
|
|
import {
|
|
DocumentSource,
|
|
DocumentStatus,
|
|
RecipientRole,
|
|
SendStatus,
|
|
} from '@documenso/prisma/client';
|
|
|
|
import { getI18nInstance } from '../../../client-only/providers/i18n.server';
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from '../../../constants/app';
|
|
import { FROM_ADDRESS, FROM_NAME } from '../../../constants/email';
|
|
import {
|
|
RECIPIENT_ROLES_DESCRIPTION_ENG,
|
|
RECIPIENT_ROLE_TO_EMAIL_TYPE,
|
|
} from '../../../constants/recipient-roles';
|
|
import { DOCUMENT_AUDIT_LOG_TYPE } from '../../../types/document-audit-logs';
|
|
import { ZRequestMetadataSchema } from '../../../universal/extract-request-metadata';
|
|
import { createDocumentAuditLogData } from '../../../utils/document-audit-logs';
|
|
import { renderCustomEmailTemplate } from '../../../utils/render-custom-email-template';
|
|
import { renderEmailWithI18N } from '../../../utils/render-email-with-i18n';
|
|
import { type JobDefinition } from '../../client/_internal/job';
|
|
|
|
const SEND_SIGNING_EMAIL_JOB_DEFINITION_ID = 'send.signing.requested.email';
|
|
|
|
const SEND_SIGNING_EMAIL_JOB_DEFINITION_SCHEMA = z.object({
|
|
userId: z.number(),
|
|
documentId: z.number(),
|
|
recipientId: z.number(),
|
|
requestMetadata: ZRequestMetadataSchema.optional(),
|
|
});
|
|
|
|
export const SEND_SIGNING_EMAIL_JOB_DEFINITION = {
|
|
id: SEND_SIGNING_EMAIL_JOB_DEFINITION_ID,
|
|
name: 'Send Signing Email',
|
|
version: '1.0.0',
|
|
trigger: {
|
|
name: SEND_SIGNING_EMAIL_JOB_DEFINITION_ID,
|
|
schema: SEND_SIGNING_EMAIL_JOB_DEFINITION_SCHEMA,
|
|
},
|
|
handler: async ({ payload, io }) => {
|
|
const { userId, documentId, recipientId, requestMetadata } = payload;
|
|
|
|
const [user, document, recipient] = await Promise.all([
|
|
prisma.user.findFirstOrThrow({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
}),
|
|
prisma.document.findFirstOrThrow({
|
|
where: {
|
|
id: documentId,
|
|
status: DocumentStatus.PENDING,
|
|
},
|
|
include: {
|
|
documentMeta: true,
|
|
team: {
|
|
select: {
|
|
teamEmail: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
prisma.recipient.findFirstOrThrow({
|
|
where: {
|
|
id: recipientId,
|
|
},
|
|
}),
|
|
]);
|
|
|
|
const { documentMeta, team } = document;
|
|
|
|
if (recipient.role === RecipientRole.CC) {
|
|
return;
|
|
}
|
|
|
|
const customEmail = document?.documentMeta;
|
|
const isDirectTemplate = document.source === DocumentSource.TEMPLATE_DIRECT_LINK;
|
|
const isTeamDocument = document.teamId !== null;
|
|
|
|
const recipientEmailType = RECIPIENT_ROLE_TO_EMAIL_TYPE[recipient.role];
|
|
|
|
const { email, name } = recipient;
|
|
const selfSigner = email === user.email;
|
|
const recipientActionVerb =
|
|
RECIPIENT_ROLES_DESCRIPTION_ENG[recipient.role].actionVerb.toLowerCase();
|
|
|
|
const i18n = await getI18nInstance(documentMeta?.language);
|
|
|
|
let emailMessage = customEmail?.message || '';
|
|
let emailSubject = i18n._(msg`Please ${recipientActionVerb} this document`);
|
|
|
|
if (selfSigner) {
|
|
emailMessage = i18n._(
|
|
msg`You have initiated the document ${`"${document.title}"`} that requires you to ${recipientActionVerb} it.`,
|
|
);
|
|
emailSubject = i18n._(msg`Please ${recipientActionVerb} your document`);
|
|
}
|
|
|
|
if (isDirectTemplate) {
|
|
emailMessage = i18n._(
|
|
msg`A document was created by your direct template that requires you to ${recipientActionVerb} it.`,
|
|
);
|
|
emailSubject = i18n._(
|
|
msg`Please ${recipientActionVerb} this document created by your direct template`,
|
|
);
|
|
}
|
|
|
|
if (isTeamDocument && team) {
|
|
emailSubject = i18n._(msg`${team.name} invited you to ${recipientActionVerb} a document`);
|
|
emailMessage = i18n._(
|
|
msg`${user.name} on behalf of ${team.name} has invited you to ${recipientActionVerb} the document "${document.title}".`,
|
|
);
|
|
}
|
|
|
|
const customEmailTemplate = {
|
|
'signer.name': name,
|
|
'signer.email': email,
|
|
'document.name': document.title,
|
|
};
|
|
|
|
const assetBaseUrl = NEXT_PUBLIC_WEBAPP_URL() || 'http://localhost:3000';
|
|
const signDocumentLink = `${NEXT_PUBLIC_WEBAPP_URL()}/sign/${recipient.token}`;
|
|
|
|
const template = createElement(DocumentInviteEmailTemplate, {
|
|
documentName: document.title,
|
|
inviterName: user.name || undefined,
|
|
inviterEmail: isTeamDocument ? team?.teamEmail?.email || user.email : user.email,
|
|
assetBaseUrl,
|
|
signDocumentLink,
|
|
customBody: renderCustomEmailTemplate(emailMessage, customEmailTemplate),
|
|
role: recipient.role,
|
|
selfSigner,
|
|
isTeamInvite: isTeamDocument,
|
|
teamName: team?.name,
|
|
teamEmail: team?.teamEmail?.email,
|
|
});
|
|
|
|
await io.runTask('send-signing-email', async () => {
|
|
const [html, text] = await Promise.all([
|
|
renderEmailWithI18N(template, { lang: documentMeta?.language }),
|
|
renderEmailWithI18N(template, {
|
|
lang: documentMeta?.language,
|
|
plainText: true,
|
|
}),
|
|
]);
|
|
|
|
await mailer.sendMail({
|
|
to: {
|
|
name: recipient.name,
|
|
address: recipient.email,
|
|
},
|
|
from: {
|
|
name: FROM_NAME,
|
|
address: FROM_ADDRESS,
|
|
},
|
|
subject: renderCustomEmailTemplate(
|
|
documentMeta?.subject || emailSubject,
|
|
customEmailTemplate,
|
|
),
|
|
html,
|
|
text,
|
|
});
|
|
});
|
|
|
|
await io.runTask('update-recipient', async () => {
|
|
await prisma.recipient.update({
|
|
where: {
|
|
id: recipient.id,
|
|
},
|
|
data: {
|
|
sendStatus: SendStatus.SENT,
|
|
},
|
|
});
|
|
});
|
|
|
|
await io.runTask('store-audit-log', async () => {
|
|
await prisma.documentAuditLog.create({
|
|
data: createDocumentAuditLogData({
|
|
type: DOCUMENT_AUDIT_LOG_TYPE.EMAIL_SENT,
|
|
documentId: document.id,
|
|
user,
|
|
requestMetadata,
|
|
data: {
|
|
emailType: recipientEmailType,
|
|
recipientId: recipient.id,
|
|
recipientName: recipient.name,
|
|
recipientEmail: recipient.email,
|
|
recipientRole: recipient.role,
|
|
isResending: false,
|
|
},
|
|
}),
|
|
});
|
|
});
|
|
},
|
|
} as const satisfies JobDefinition<
|
|
typeof SEND_SIGNING_EMAIL_JOB_DEFINITION_ID,
|
|
z.infer<typeof SEND_SIGNING_EMAIL_JOB_DEFINITION_SCHEMA>
|
|
>;
|