File size: 2,212 Bytes
62c3fe0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
const { google } = require('googleapis');
const { oAuth2Client } = require('../config/googleOAuth');
const sendEmail = async (recipient, subject, htmlContent, attachment = null, attachmentName = '') => {
try {
const gmail = google.gmail({ version: 'v1', auth: oAuth2Client });
// Unique boundary string
const boundary = "----=_NextPart_001";
let rawEmail = [
`To: ${recipient}`,
`Subject: ${subject}`,
`MIME-Version: 1.0`,
];
if (attachment && attachment.buffer) {
const encodedAttachment = Buffer.isBuffer(attachment.buffer)
? attachment.buffer.toString('base64')
: Buffer.from(attachment.buffer).toString('base64');
const formattedAttachment = encodedAttachment.match(/.{1,76}/g).join("\n");
rawEmail.push(
`Content-Type: multipart/mixed; boundary="${boundary}"`,
"",
`--${boundary}`,
"Content-Type: text/html; charset=UTF-8",
"",
htmlContent,
"",
`--${boundary}`,
`Content-Type: ${attachment.mimetype}; name="${attachmentName}"`,
`Content-Disposition: attachment; filename="${attachmentName}"`,
"Content-Transfer-Encoding: base64",
"",
formattedAttachment,
"",
`--${boundary}--`
);
} else {
rawEmail.push("Content-Type: text/html; charset=UTF-8", "", htmlContent);
}
const encodedEmail = Buffer.from(rawEmail.join("\r\n"))
.toString("base64")
.replace(/\+/g, "-")
.replace(/\//g, "_")
.replace(/=+$/, ""); // Remove padding `=` characters
await gmail.users.messages.send({
userId: "me",
requestBody: { raw: encodedEmail },
});
console.log(`β
Email sent successfully to ${recipient}`);
} catch (error) {
console.log(`β Failed to send email to ${recipient}:`, error);
throw error;
}
};
module.exports = { sendEmail }; |