# sentry-twilio **Repository Path**: mirrors_getsentry/sentry-twilio ## Basic Information - **Project Name**: sentry-twilio - **Description**: A plugin for Sentry that sends SMS notifications via Twilio - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sentry-twilio DEPRECATED: This project now lives in [sentry](https://github.com/getsentry/sentry/tree/master/src/sentry_plugins/twilio) A plugin for [Sentry](https://www.getsentry.com/) that sends SMS notifications via [Twilio](http://www.twilio.com/) **Note**: Only works with US numbers, mostly because I'm too lazy to think about international phone numbers and what to do with them. Feel free to submit a pull request. ## Installation `$ pip install sentry-twilio` Sentry will automagically detect that it has been installed. ## Configuration `sentry-twilio` needs 4 pieces of information to set this up correctly. ### Account SID & Auth Token The Account SID and Auth Token can both be found on your [Twilio account dashboard](https://www.twilio.com/user/account). ![](http://i.imgur.com/Km3cI.png) ### SMS From # This is the number that was purchased through Twilio. [Twilio documentation for more information](https://www.twilio.com/help/faq/phone-numbers). Examples: ``` +13305093095 // or 5551234567 ``` ### SMS To #'s A list of phone numbers to send to separated by commas. Example: ``` +13305093095, 5551234567 ```