From 34ecef5c6a8e21338dc931a1bb294aaf774add39 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 13 Oct 2023 22:13:03 +0200 Subject: [PATCH] fix: email template --- app/Notifications/FeedbackNotification.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/Notifications/FeedbackNotification.php b/app/Notifications/FeedbackNotification.php index 0a6fc0bcd..d6a8a9efd 100644 --- a/app/Notifications/FeedbackNotification.php +++ b/app/Notifications/FeedbackNotification.php @@ -53,11 +53,12 @@ public function toMail($notifiable) $controller = isset($this->feedback->referenceUser) ? $this->feedback->referenceUser->name : 'N/A'; $textLines = [ - 'New feedback has been submitted by ' . $this->feedback->submitter->name . ' (' . $this->feedback->submitter->id . ').', - '*You can reply to this email to respond directly.*', - '- **Controller**: ' . $controller, - '- **Position**: ' . $position, - '### Feedback', + 'New feedback has been submitted by ' . $this->feedback->submitter->name . ' (' . $this->feedback->submitter->id . '). You may respond by replying to this email.', + '___', + '**Controller**: ' . $controller, + '**Position**: ' . $position, + '___', + '**Feedback**', $this->feedback->feedback, ];