Fix email formatting (I think)
[vchess.git] / server / models / User.js
index bd7e8ed..70d8b52 100644 (file)
@@ -135,7 +135,7 @@ const UserModel =
   {
     const subject = "vchess.club - notification";
     const body = "Hello " + user.name + "!" + `
-    ` + message;
+` + message;
     sendEmail(params.mail.noreply, user.email, subject, body);
   },