From 907e56af0faccdbc8d7f5ab3418a4ad71ff849f5 Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Thu, 8 Dec 2022 20:04:56 +0100 Subject: [PATCH] fix: space character in email --- backend/src/email/email.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/email/email.service.ts b/backend/src/email/email.service.ts index 676e38a3..3b152ad7 100644 --- a/backend/src/email/email.service.ts +++ b/backend/src/email/email.service.ts @@ -28,7 +28,7 @@ export class EmailService { from: `"Pingvin Share" <${this.config.get("SMTP_EMAIL")}>`, to: recipientEmail, subject: "Files shared with you", - text: `Hey!\n${creator.username} shared some files with you. View or dowload the files with this link: ${shareUrl}.\n Shared securely with Pingvin Share 🐧`, + text: `Hey!\n${creator.username} shared some files with you. View or dowload the files with this link: ${shareUrl}.\nShared securely with Pingvin Share 🐧`, }); } }