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 03df0e5 commit 9c7121eCopy full SHA for 9c7121e
README.md
@@ -144,8 +144,9 @@ if len(msg_id) == 0:
144
145
tx = Transactional(auth)
146
147
-# Get message details using message id
148
-msg_details = tx.message_details(msg_id, statistics=True, exclude_message_body=False)
+# Get message details using message id.
+# We can optionally disable loading the body by setting exclude_message_body to `True`.
149
+msg_details = tx.message_details(msg_id, statistics=False, exclude_message_body=True)
150
print(f'smart email id: {msg_details.SmartEmailID}')
151
print(f'bounce type: {msg_details.BounceType}')
152
print(f'bounce category: {msg_details.BounceCategory}')
0 commit comments