sms send an SMS (text) message to a phone number

sms.py

sms.send_sms(phone_number, message)

Sends an SMS message. Only one message may be sent at a time. System does not que messages!

Parameters:
  • phone_number (str) – the phone number to send message to, e.g. “+17034062800”
  • message (str) – the message to send, e.g. “Hello”
Returns:

None

sms.test_sms()

tests the send_sms routine