Skip to content

Commit

Permalink
fix: email template
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Oct 13, 2023
1 parent 7a28ef9 commit 34ecef5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/Notifications/FeedbackNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,

];
Expand Down

0 comments on commit 34ecef5

Please sign in to comment.