Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ddd3da6

Browse filesBrowse files
Merge pull request seeditsolution#211 from rajanitnavapara8/patch-4
send sms using twilio
2 parents a45bad5 + 4808533 commit ddd3da6
Copy full SHA for ddd3da6

File tree

Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed
Open diff view settings
Collapse file

‎twilio_sms.py‎

Copy file name to clipboard
+13Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from twilio.rest import Client
2+
3+
sid = #write here sid number
4+
token = #write token number here
5+
client = Client(sid,token)
6+
7+
my_msg = "Hi, It's Working correctly...☺"
8+
9+
client.messages.create(
10+
to= #type here number to whom you're sending ,
11+
from_= #type your number ,
12+
body=my_msg
13+
)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.