From 0246e68b6b3d730d3f9a7bcf11ee6ef1044df155 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Fri, 23 Jun 2017 00:06:52 +0200 Subject: Newline after "On %date you wrote:" --- framework/src/domain/mime/mailtemplates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 //On $datetime you wrote: const QDateTime date = origMsg->date()->dateTime(); const auto dateTimeString = QString("%1 %2").arg(definedLocale.toString(date.date(), QLocale::LongFormat)).arg(definedLocale.toString(date.time(), QLocale::LongFormat)); - const auto onDateYouWroteLine = QString("On %1 you wrote:").arg(dateTimeString); + const auto onDateYouWroteLine = QString("On %1 you wrote:\n").arg(dateTimeString); plainBody.append(onDateYouWroteLine); htmlBody.append(plainToHtml(onDateYouWroteLine)); -- cgit v1.2.3