Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
Hotfix: Disable emails
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEgghead27 committed Feb 2, 2024
1 parent ecc467a commit 099a657
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils/sendEmail.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ const sendEmail = async ({

const html = emailRenderer.render(template, variables);
const text = parse(html).structuredText;
return null;
/*
return transporter.sendMail({
to,
cc,
Expand All @@ -74,6 +76,7 @@ const sendEmail = async ({
text,
replyTo
});
*/
};

export default sendEmail;

0 comments on commit 099a657

Please sign in to comment.