Compare commits

...

2 Commits

Author SHA1 Message Date
f8b3930fcc Merge branch 'dev' 2025-04-16 18:12:34 +05:30
7642268606 Update index.ts 2025-04-16 18:11:53 +05:30

View File

@ -51,6 +51,8 @@ export const sendEmailWithAttachment = onRequest({
});
});
try {
const mailgun = new Mailgun(formData);
const client = mailgun.client({ username: 'api', key: process.env.MAILGUN_API_KEY });
@ -76,9 +78,12 @@ export const sendEmailWithAttachment = onRequest({
const result = await client.messages.create(process.env.MAILGUN_SERVER, data);
fs.unlinkSync(tempFilePath);
logger.info('Email with attachment from URL sent successfully');
response.json({ success: true, result });
} catch (e) {
console.error(`Error while sending E-mail. Error: ${e}`);
}
} catch (error) {
logger.error('Error sending email with attachment from URL:', error);
response.status(500).json({ success: false, error: error instanceof Error ? error.message : String(error) });