Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if response.success:
print (response.id)
else:
print (response.error_code)
print (response.error_description)
print (response.error_message)
```

### Send multiple SMS messages
Expand All @@ -50,7 +50,7 @@ for sms_response in response:
print (sms_response.id)
else:
print (sms_response.error_code)
print (sms_response.error_description)
print (sms_response.error_message)
```

Passing an array of messages to the send method is much more efficient than making multiple calls to the `send` method; as well making less round-trips to the server the messages are "batched" in clockwork, which is significantly better for performance.
Expand Down