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, ];