diff --git a/ATxService/Email.cs b/ATxService/Email.cs index 64c6995be191dece52a321e326b184a7c176f96e..c4dfbf487c61d81f1b7cf90df3ee40c2c01c2fd9 100644 --- a/ATxService/Email.cs +++ b/ATxService/Email.cs @@ -18,7 +18,7 @@ namespace ATxService /// <param name="body">The email body.</param> private void SendEmail(string recipient, string subject, string body) { subject = _config.EmailPrefix + subject; - body += $"\n\n--\n[{_versionSummary}]"; + body += $"\n\n--\n[{_versionSummary}]\n"; if (string.IsNullOrEmpty(_config.SmtpHost)) { Log.Debug("SendEmail: {0}\n{1}", subject, body); return;