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, html,
}; };
if (cloudMailerClient) { // if (cloudMailerClient) {
const response = await cloudMailerClient.emails.send({ // const response = await cloudMailerClient.emails.send({
...options, // ...options,
body: html, // body: html,
}); // });
return response; // return response;
} // }
const response = await transporter.sendMail(options); const response = await transporter.sendMail(options);