This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
messagearr/app/create_message.py
2023-09-17 19:20:26 -05:00

13 lines
279 B
Python

import telnyx
from initialize_variables import *
def create_message(number, message):
if sms_service == 'telnyx':
telnyx.api_key = telnyx_api_key
telnyx.Message.create(
from_=api_number,
to=number,
text=message
)