We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b8f22 commit 68dec32Copy full SHA for 68dec32
1 file changed
README.md
@@ -33,11 +33,15 @@ for part in parts:
33
pdu = client.send_message(
34
source_addr_ton=smpplib.consts.SMPP_TON_INTL,
35
#source_addr_npi=smpplib.consts.SMPP_NPI_ISDN,
36
+ # Make sure it is a byte string, not unicode:
37
source_addr='SENDERPHONENUM',
38
+
39
dest_addr_ton=smpplib.consts.SMPP_TON_INTL,
40
#dest_addr_npi=smpplib.consts.SMPP_NPI_ISDN,
41
+ # Make sure thease two params are byte strings, not unicode:
42
destination_addr='PHONENUMBER',
43
short_message=part,
44
45
data_coding=encoding_flag,
46
esm_class=msg_type_flag,
47
registered_delivery=True,
0 commit comments