From 2a355238a481cd48a2898e5653fe4aeff082c205 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 4 Sep 2025 22:30:21 +0100 Subject: [PATCH] feat(cloud): prevent cloud mailer from sending emails --- packages/email/src/sendEmail.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/email/src/sendEmail.tsx b/packages/email/src/sendEmail.tsx index 752250b6..b02b0739 100644 --- a/packages/email/src/sendEmail.tsx +++ b/packages/email/src/sendEmail.tsx @@ -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);