Skip to content

Instantly share code, notes, and snippets.

View k-zehnder's full-sized avatar
😀

Kevin Zehnder k-zehnder

😀
View GitHub Profile
@k-zehnder
k-zehnder / send_texts.py
Created March 21, 2025 01:43 — forked from MaddoxRauch/send_texts.py
Send text messages using email servers and SMS gateways.
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',