summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/src/domain/mime/mailtemplates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/src/domain/mime/mailtemplates.cpp b/framework/src/domain/mime/mailtemplates.cpp
index 2c9bcb69..b1e57742 100644
--- a/framework/src/domain/mime/mailtemplates.cpp
+++ b/framework/src/domain/mime/mailtemplates.cpp
@@ -787,7 +787,7 @@ void MailTemplates::reply(const KMime::Message::Ptr &origMsg, const std::functio
787 //On $datetime you wrote: 787 //On $datetime you wrote:
788 const QDateTime date = origMsg->date()->dateTime(); 788 const QDateTime date = origMsg->date()->dateTime();
789 const auto dateTimeString = QString("%1 %2").arg(definedLocale.toString(date.date(), QLocale::LongFormat)).arg(definedLocale.toString(date.time(), QLocale::LongFormat)); 789 const auto dateTimeString = QString("%1 %2").arg(definedLocale.toString(date.date(), QLocale::LongFormat)).arg(definedLocale.toString(date.time(), QLocale::LongFormat));
790 const auto onDateYouWroteLine = QString("On %1 you wrote:").arg(dateTimeString); 790 const auto onDateYouWroteLine = QString("On %1 you wrote:\n").arg(dateTimeString);
791 plainBody.append(onDateYouWroteLine); 791 plainBody.append(onDateYouWroteLine);
792 htmlBody.append(plainToHtml(onDateYouWroteLine)); 792 htmlBody.append(plainToHtml(onDateYouWroteLine));
793 793