mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 21:45:18 +10:00
9ac7b94d9a
Allow organisations to manage an SSO OIDC compliant portal. This method is intended to streamline the onboarding process and paves the way to allow organisations to manage their members in a more strict way.
71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
import { createElement } from 'react';
|
|
|
|
import { msg } from '@lingui/core/macro';
|
|
|
|
import { mailer } from '@documenso/email/mailer';
|
|
import { ConfirmEmailTemplate } from '@documenso/email/templates/confirm-email';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { getI18nInstance } from '../../client-only/providers/i18n-server';
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from '../../constants/app';
|
|
import {
|
|
DOCUMENSO_INTERNAL_EMAIL,
|
|
USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER,
|
|
} from '../../constants/email';
|
|
import { renderEmailWithI18N } from '../../utils/render-email-with-i18n';
|
|
|
|
export interface SendConfirmationEmailProps {
|
|
userId: number;
|
|
}
|
|
|
|
export const sendConfirmationEmail = async ({ userId }: SendConfirmationEmailProps) => {
|
|
const user = await prisma.user.findFirstOrThrow({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
include: {
|
|
verificationTokens: {
|
|
where: {
|
|
identifier: USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER,
|
|
},
|
|
orderBy: {
|
|
createdAt: 'desc',
|
|
},
|
|
take: 1,
|
|
},
|
|
},
|
|
});
|
|
|
|
const [verificationToken] = user.verificationTokens;
|
|
|
|
if (!verificationToken?.token) {
|
|
throw new Error('Verification token not found for the user');
|
|
}
|
|
|
|
const assetBaseUrl = NEXT_PUBLIC_WEBAPP_URL() || 'http://localhost:3000';
|
|
const confirmationLink = `${assetBaseUrl}/verify-email/${verificationToken.token}`;
|
|
|
|
const confirmationTemplate = createElement(ConfirmEmailTemplate, {
|
|
assetBaseUrl,
|
|
confirmationLink,
|
|
});
|
|
|
|
const [html, text] = await Promise.all([
|
|
renderEmailWithI18N(confirmationTemplate),
|
|
renderEmailWithI18N(confirmationTemplate, { plainText: true }),
|
|
]);
|
|
|
|
const i18n = await getI18nInstance();
|
|
|
|
return mailer.sendMail({
|
|
to: {
|
|
address: user.email,
|
|
name: user.name || '',
|
|
},
|
|
from: DOCUMENSO_INTERNAL_EMAIL,
|
|
subject: i18n._(msg`Please confirm your email`),
|
|
html,
|
|
text,
|
|
});
|
|
};
|