feat(cloud): prevent cloud mailer from sending emails
This commit is contained in:
@@ -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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user