feat(cloud): prevent cloud mailer from sending emails

This commit is contained in:
Henry
2025-09-04 22:30:21 +01:00
parent 874353e8b8
commit 2a355238a4

View File

@@ -45,14 +45,14 @@ export const sendEmail = async (
html,
};
if (cloudMailerClient) {
const response = await cloudMailerClient.emails.send({
...options,
body: html,
});
// if (cloudMailerClient) {
// const response = await cloudMailerClient.emails.send({
// ...options,
// body: html,
// });
return response;
}
// return response;
// }
const response = await transporter.sendMail(options);