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 6745bfc commit 055f8d1Copy full SHA for 055f8d1
2 files changed
office365/directory/users/user.py
@@ -272,7 +272,7 @@ def send_mail(
272
to_recipients,
273
cc_recipients=None,
274
bcc_recipients=None,
275
- reply_to = None,
+ reply_to=None,
276
save_to_sent_items=False,
277
body_type="Text",
278
):
office365/outlook/mail/messages/message.py
@@ -422,9 +422,7 @@ def cc_recipients(self):
422
def reply_to(self):
423
"""The replyTo: recipients for the reply to the message."""
424
self._persist_changes("replyTo")
425
- return self.properties.setdefault(
426
- "replyTo", ClientValueCollection(Recipient)
427
- )
+ return self.properties.setdefault("replyTo", ClientValueCollection(Recipient))
428
429
@property
430
def sender(self):
0 commit comments