我想收到我已提交到数据库的 SMS 提醒(通过 Web 表单,而不是通过 SMS)。例如(在 python 中):
message = client.sms.messages.create(to"---phone number1---", from_="---phone number2---", body="message text yay!")
发送“消息文本耶!” 从 Twilio 号码到“电话号码 2”。
我想发送 MySql 数据库中列出的信息,而不是如上所示的单个文本项。(解决方案不必仅在 Python 中。)