Senthil M.K.
01/17/2023, 11:43 PMNate
01/18/2023, 12:56 AMTwilioNotificationBlock
available currently in the core library that you can use in your flows or an automation.
What functionality were you hoping to find in prefect-twilio
?Senthil M.K.
01/18/2023, 2:59 AMNate
01/18/2023, 3:10 AMTwilioSMS
block can send SMS messages (to one or many phone numbers)
so in the UI you can go to Blocks > Create > TwilioSMS > fill out fields to create a block e.g. one called your-block-name
from prefect.blocks.notifications import TwilioSMS
twilio_webhook_block = TwilioSMS.load("your-block-name")
twilio_webhook_block.notify("Hello from Prefect!")
if there are other things you'd like to see from a prefect-twilio
collection, feel free to open an issue and we can implement it as time allowsSenthil M.K.
01/18/2023, 3:49 AMNate
01/18/2023, 3:57 AMSenthil M.K.
01/18/2023, 3:58 AM