Skip to content

Instantly share code, notes, and snippets.

View stevebowman's full-sized avatar

Steve Bowman stevebowman

View GitHub Profile
@stevebowman
stevebowman / AWSLambdaSimpleSMS.js
Last active June 22, 2023 12:09
AWS Lambda Function to send an SMS message via the Twilio API
console.log('Loading event');
// Twilio Credentials
var accountSid = '';
var authToken = '';
var fromNumber = '';
var https = require('https');
var queryString = require('querystring');