Skip to content
This repository has been archived by the owner on Nov 8, 2018. It is now read-only.

Commit

Permalink
don't send messages in flowed text format
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophWurst committed May 9, 2016
1 parent d18c47d commit 14f78b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
### Fixed
- Bring back menu toggle button for mobile
[#1483](https://github.com/owncloud/mail/pull/1483) @ChristophWurst
- Don't send messages in flowed text format
[#1482](https://github.com/owncloud/mail/pull/1482) @ChristophWurst

## 0.4.4 – 2016-05-06

Expand Down
2 changes: 1 addition & 1 deletion lib/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function sendMessage(IMessage $message, $draftUID) {

// Send the message
$transport = $this->createTransport();
$mail->send($transport);
$mail->send($transport, false, false);

// Save the message in the sent folder
$sentFolder = $this->getSentFolder();
Expand Down

0 comments on commit 14f78b1

Please sign in to comment.