Skip to content

Instantly share code, notes, and snippets.

@afukuma
afukuma / SES→SNSで発火するもの
Last active October 1, 2019 11:31
【AWS】いまさら空メール【SES+Lambda】 ref: https://qiita.com/afukuma/items/fe216e804e7ddca42905
exports.handler = function(event, context) {
var eventSns = event.Records[0].Sns;
var msg = eventSns.Message;
var msgObj = JSON.parse(msg);
var flg = false;
//送信者は知っている人かチェックする
switch(msgObj.mail.source){
case 'omae@sitteru.com' :
case 'you@sitteru.com':