Skip to content

Instantly share code, notes, and snippets.

@mpayetta
Created March 27, 2018 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpayetta/62f279bbc324bb69d081c1d7b5d8b23d to your computer and use it in GitHub Desktop.
Save mpayetta/62f279bbc324bb69d081c1d7b5d8b23d to your computer and use it in GitHub Desktop.
lambda-3.js
var aws = require('aws-sdk');
var nodemailer = require('nodemailer');
var ses = new aws.SES();
var s3 = new aws.S3();
function getS3File(bucket, key) {
return new Promise(function (resolve, reject) {
s3.getObject(
{
Bucket: bucket,
Key: key
},
function (err, data) {
if (err) return reject(err);
else return resolve(data);
}
);
})
}
exports.handler = function (event, context, callback) {
getS3File('xoor-email-attachments', 'attachment.pdf')
.then(function (fileData) {
var mailOptions = {
from: 'mauricio@xoor.io',
subject: 'This is an email sent from a Lambda function!',
html: `<p>You got a contact message from: <b>${event.emailAddress}</b></p>`,
to: 'mauricio@xoor.io',
// bcc: Any BCC address you want here in an array,
attachments: [
{
filename: "An Attachment.pdf",
content: fileData.Body
}
]
};
console.log('Creating SES transporter');
// create Nodemailer SES transporter
var transporter = nodemailer.createTransport({
SES: ses
});
// send email
transporter.sendMail(mailOptions, function (err, info) {
if (err) {
console.log(err);
console.log('Error sending email');
callback(err);
} else {
console.log('Email sent successfully');
callback();
}
});
})
.catch(function (error) {
console.log(error);
console.log('Error getting attachment from S3');
callback(err);
});
};
@nautymanish
Copy link

No the code in lamda is failing at the first point
var nodemailer = require('nodemailer');
Please note I am using nodejs12.x and inbuilt code editor of Lambda.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment