mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
Implemented Email Domains which allows Platform/Enterprise customers to send emails to recipients using their custom emails.
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
import { DeleteEmailIdentityCommand } from '@aws-sdk/client-sesv2';
|
|
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { getSesClient } from './create-email-domain';
|
|
|
|
type DeleteEmailDomainOptions = {
|
|
emailDomainId: string;
|
|
};
|
|
|
|
/**
|
|
* Delete the email domain and SES email identity.
|
|
*
|
|
* Permission is assumed to be checked in the caller.
|
|
*/
|
|
export const deleteEmailDomain = async ({ emailDomainId }: DeleteEmailDomainOptions) => {
|
|
const emailDomain = await prisma.emailDomain.findUnique({
|
|
where: {
|
|
id: emailDomainId,
|
|
},
|
|
});
|
|
|
|
if (!emailDomain) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Email domain not found',
|
|
});
|
|
}
|
|
|
|
const sesClient = getSesClient();
|
|
|
|
await sesClient
|
|
.send(
|
|
new DeleteEmailIdentityCommand({
|
|
EmailIdentity: emailDomain.domain,
|
|
}),
|
|
)
|
|
.catch((err) => {
|
|
console.error(err);
|
|
|
|
// Do nothing if it no longer exists in SES.
|
|
if (err.name === 'NotFoundException') {
|
|
return;
|
|
}
|
|
});
|
|
|
|
await prisma.emailDomain.delete({
|
|
where: {
|
|
id: emailDomainId,
|
|
},
|
|
});
|
|
};
|