Skip to content

Instantly share code, notes, and snippets.

@diegofcornejo
diegofcornejo / index.js
Last active July 7, 2023 08:21
AWS SES send raw email with attachment
'use strict';
const AWS = require('aws-sdk');
const EMAIL = require('./mail.js');
exports.handler = (event, context, callback) => {
//HERE YOUR CODE
EMAIL.send();
callback(null, ':)');
};