Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Utility Azure Web Jobs extensions for using Twilio sms

License

Notifications You must be signed in to change notification settings

JasonHaley/Twilio.WebJobs.Extensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Twilio.WebJobs.Extensions

Utility Azure Web Jobs extensions for using Twilio sms

#Twilio A binding that will send an SMS message

Example of sending a message from an order objects sent via a queue

public static void ProcessOrder_Declarative(
    [QueueTrigger(@"samples-orders")] Order order,
    [Twilio(
                To = "{CustomerCell}",
                Body = "{CustomerName}, we've received your order ({OrderId}) and have begun processing it!")]
            Message message)
{
    // You can set additional message properties here
}

About

Utility Azure Web Jobs extensions for using Twilio sms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages