We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a45bad5 + 4808533 commit ddd3da6Copy full SHA for ddd3da6
twilio_sms.py
@@ -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