From 2f8b115f275daa8b773643aedac2719545d6432a Mon Sep 17 00:00:00 2001 From: Immanuel Onyeka Date: Tue, 22 Jun 2021 16:03:58 -0400 Subject: [PATCH] Add reply-to for user's tickets --- app/Mail/SupportTicket.php | 2 +- resources/scss/main.scss | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app/Mail/SupportTicket.php b/app/Mail/SupportTicket.php index 053a448..593ab3f 100644 --- a/app/Mail/SupportTicket.php +++ b/app/Mail/SupportTicket.php @@ -32,7 +32,6 @@ class SupportTicket extends Mailable $this->user_message = $user_message; $this->type = $ticket->type; $this->id = $ticket->id; - Log::debug($this->user_message); } /** @@ -45,6 +44,7 @@ class SupportTicket extends Mailable $this->view('support-ticket'); $this->from('donotreply@trendplays.com'); $this->subject("Ticket: $this->id, $this->type"); + $this->replyTo($this->email); return $this; } } diff --git a/resources/scss/main.scss b/resources/scss/main.scss index ee307c2..7b1789b 100644 --- a/resources/scss/main.scss +++ b/resources/scss/main.scss @@ -25,6 +25,10 @@ button { font-family: 'PatuaOne', 'Times New Roman'; } +textarea { + border: 1px solid grey; +} + h1 { color: white; } @@ -786,6 +790,8 @@ main.panel { } .recent-pane, .history-pane{ + min-width: 20em; + overflow: scroll; table { border-spacing: 4px; margin: auto; @@ -871,7 +877,6 @@ main.panel { } .history-pane { - overflow: visible; transition: all 0.2s; .nav-btn { width: 1.5em;