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 April 17, 2025 16:26
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');