Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-25 11:07:14 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-25 11:54:32 +0300
commit2c8869d286a945c67ea3601f6b8017daa8671285 (patch)
treecc1f6817113f8d9c1aec6255eeba26d2caa0be27 /lib/Service
parent32ba7430b15a428e9261cb01a692626f6c4c2488 (diff)
Fix line breaks in plain text message
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Service')
-rwxr-xr-xlib/Service/Html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/Html.php b/lib/Service/Html.php
index e71160b95..8c805abc4 100755
--- a/lib/Service/Html.php
+++ b/lib/Service/Html.php
@@ -103,7 +103,7 @@ class Html {
}
return [
- $body,
+ nl2br($body),
$signature
];
}