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 8, 2016
1 parent 2fdb76d commit ef72b9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## 0.4.5 – UNRELEASED

## 0.4.4
### Fixed
- Don't send messages in flowed text format
[#1482](https://github.com/owncloud/mail/pull/1482) @ChristophWurst

## 0.4.4 – 2016-05-06

### Added
- Collapse folders and show only important ones
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 ef72b9c

Please sign in to comment.