SubmitMultiSM support
Is there any option to add multiple destination_addr.
Something like this
for phone in list_phone:
client.send_message(
source_addr_ton=smpplib.consts.SMPP_TON_INTL,
source_addr='SENDERPHONENUM',
dest_addr_ton=smpplib.consts.SMPP_TON_INTL,
destination_addr=phone,
short_message=text,
registered_delivery=True)
Hi @bhaskar-tweebr,
send_message cannot support this, because behind the scenes it sends out SubmitSM which only allows one destination address.
What you need is SubmitMultiSM SMPP command, however we don't have it implemented at the moment, unfortunately.
Thanks for the answer. Can you please let me know, how I can get DeliverySM for each number..
Oops, somehow I've accidentally missed the message. I'm sorry. Is the question still actual?
Will this ever be done?
1+