mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
fix: review comments
This commit is contained in:
@@ -348,16 +348,20 @@ export const userServiceFactory = ({
|
||||
const deleteUser = async (userId: string) => {
|
||||
const user = await userDAL.deleteById(userId);
|
||||
|
||||
if (user?.email) {
|
||||
// Send email to user to confirm account deletion
|
||||
await smtpService.sendMail({
|
||||
template: SmtpTemplates.AccountDeletionConfirmation,
|
||||
subjectLine: "Your Infisical account has been deleted",
|
||||
recipients: [user.email],
|
||||
substitutions: {
|
||||
email: user.email
|
||||
}
|
||||
});
|
||||
try {
|
||||
if (user?.email) {
|
||||
// Send email to user to confirm account deletion
|
||||
await smtpService.sendMail({
|
||||
template: SmtpTemplates.AccountDeletionConfirmation,
|
||||
subjectLine: "Your Infisical account has been deleted",
|
||||
recipients: [user.email],
|
||||
substitutions: {
|
||||
email: user.email
|
||||
}
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
logger.error(error, `Failed to send account deletion confirmation email to ${user.email}`);
|
||||
}
|
||||
|
||||
return user;
|
||||
|
||||
Reference in New Issue
Block a user