An Ambivert's Guide to Azure Functions Sample Code- Message Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const accountSid = process.env.TWILIO_SID; | |
const authToken = process.env.TWILIO_TOKEN; | |
const client = require('twilio')(accountSid, authToken); | |
// This can also be accomplished with a Twilio output binding- you can read more on this at http://aka.ms/AA4n3j3 | |
module.exports = async function (context) { | |
const twilioOptions = { | |
from: process.env.SENDER_NUMBER, | |
body: 'Hey- please call me ASAP. Locked out of apartment ', | |
to: process.env.RECIPIENT_NUMBER | |
}; | |
await client.messages | |
.create(twilioOptions) | |
.then(message => { | |
context.log("Message sent"); | |
context.res = { | |
body: "Text successfully sent" | |
}; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment