Skip to content
Snippets Groups Projects
Commit ca981421 authored by Steffen Lindner's avatar Steffen Lindner
Browse files

Merge pull request #1482 from owncloud/dont-break-lines

Dont break lines
parents 4c7bac4b 14f78b16
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -208,8 +208,8 @@ define(function(require) {
defer.resolve(data);
},
error: function() {
defer.reject();
error: function(xhr) {
defer.reject(xhr);
},
data: {
to: message.to,
......
......@@ -190,7 +190,7 @@ class Account implements IAccount {
// Send the message
$transport = $this->createTransport();
$mail->send($transport);
$mail->send($transport, false, false);
// Save the message in the sent folder
$sentFolder = $this->getSentFolder();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment