This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smtplib | |
def send(message: str, username: str, password: str, phone: str) -> None: | |
"""Sends messages to phone using Gmail servers.""" | |
# Some SMS gateways may be outdated or different, i.e. @txt.att.net was @sms.att.net | |
carriers = { | |
'att': '@txt.att.net', | |
'tmobile': '@tmomail.net', | |
'verizon': '@vtext.com', |