Skip to content

Commit

Permalink
remove /n in html (demisto#35381)
Browse files Browse the repository at this point in the history
* fix

* rn_pa

* reply fix

* fix rn

* Bump pack from version MicrosoftExchangeOnline to 1.4.1.

* docker-image

* rn

---------

Co-authored-by: Content Bot <[email protected]>
  • Loading branch information
2 people authored and xsoar-bot committed Sep 10, 2024
1 parent d03c06c commit fcc8a41
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def reply_mail(self, inReplyTo, to, body, subject, bcc, cc, htmlBody, attachment
raise Exception(item_to_reply_to)

subject = subject or item_to_reply_to.subject
htmlBody, htmlAttachments = handle_html(htmlBody) if htmlBody else None, [] # type: ignore
htmlBody, htmlAttachments = handle_html(htmlBody) if htmlBody else (None, [])
message_body = HTMLBody(htmlBody) if htmlBody else body
reply = item_to_reply_to.create_reply(subject='Re: ' + subject, body=message_body, to_recipients=to,
cc_recipients=cc,
Expand Down
6 changes: 6 additions & 0 deletions Packs/MicrosoftExchangeOnline/ReleaseNotes/1_4_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### EWS O365

- Fixed an issue in the reply-mail command where the HTML body was not displaying correctly.
2 changes: 1 addition & 1 deletion Packs/MicrosoftExchangeOnline/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Microsoft Exchange Online",
"description": "Exchange Online and Office 365 (mail)",
"support": "xsoar",
"currentVersion": "1.4.0",
"currentVersion": "1.4.1",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit fcc8a41

Please sign in to comment.