You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed that the library, when sending long messages, only returns the data for the last part of the multi-part message. This is due to the function only returning a single ShortMessage in the response:
Hi all,
Noticed that the library, when sending long messages, only returns the data for the last part of the multi-part message. This is due to the function only returning a single ShortMessage in the response:
func (t *Transmitter) SubmitLongMsg(sm *ShortMessage) (*ShortMessage, error) {
I would like to extend this function to return all parts of the multi-part message:
func (t *Transmitter) SubmitLongMsg(sm *ShortMessage) ([]ShortMessage, error) {
We could then keep track of the delivery status (via Delivery-Receipts) of each part of the multi-part message.
The text was updated successfully, but these errors were encountered: