Replies: 4 comments 7 replies
-
|
My operator sent me this message, but I don't understand it. How can I implement it? Below are Message IDs NOT error codes . |
Beta Was this translation helpful? Give feedback.
-
|
Hi @sairmali, They are correct. From If you want to check a delivery status, you have 2 options: 1. Listen to
|
Beta Was this translation helpful? Give feedback.
-
|
i am using only this script so, how can i pass "deliver_sm" import logging import smpplib.gsm logging.basicConfig(level='DEBUG') parts, encoding_flag, msg_type_flag = smpplib.gsm.make_parts(u'Привет мир!\n'*10) client = smpplib.client.Client('example.com', SOMEPORTNUMBER, allow_unknown_opt_params=True) client.set_message_sent_handler( client.connect() for part in parts: |
Beta Was this translation helpful? Give feedback.
-
|
Hello @eigenein, can you tell me how can i use "query_sm" from smpplib import Client, PDU_TYPE_QUERY_SM SMSC_HOST = "your_smpp_server_host" client = Client(SMSC_HOST, SMSC_PORT, SYSTEM_ID, PASSWORD) while True: i am try to do but unefine getting error |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
hello team,
When I send a message to a wrong number, it still shows as delivered and returns a reference number. How can I fix this so that it only shows as delivered if the phone number is valid?
Beta Was this translation helpful? Give feedback.
All reactions