Переглянути джерело

Add reply-to for user's tickets

master
Immanuel Onyeka 3 роки тому
джерело
коміт
2f8b115f27
2 змінених файлів з 7 додано та 2 видалено
  1. +1
    -1
      app/Mail/SupportTicket.php
  2. +6
    -1
      resources/scss/main.scss

+ 1
- 1
app/Mail/SupportTicket.php Переглянути файл

@@ -32,7 +32,6 @@ class SupportTicket extends Mailable
$this->user_message = $user_message; $this->user_message = $user_message;
$this->type = $ticket->type; $this->type = $ticket->type;
$this->id = $ticket->id; $this->id = $ticket->id;
Log::debug($this->user_message);
} }


/** /**
@@ -45,6 +44,7 @@ class SupportTicket extends Mailable
$this->view('support-ticket'); $this->view('support-ticket');
$this->from('donotreply@trendplays.com'); $this->from('donotreply@trendplays.com');
$this->subject("Ticket: $this->id, $this->type"); $this->subject("Ticket: $this->id, $this->type");
$this->replyTo($this->email);
return $this; return $this;
} }
} }

+ 6
- 1
resources/scss/main.scss Переглянути файл

@@ -25,6 +25,10 @@ button {
font-family: 'PatuaOne', 'Times New Roman'; font-family: 'PatuaOne', 'Times New Roman';
} }


textarea {
border: 1px solid grey;
}

h1 { h1 {
color: white; color: white;
} }
@@ -786,6 +790,8 @@ main.panel {
} }


.recent-pane, .history-pane{ .recent-pane, .history-pane{
min-width: 20em;
overflow: scroll;
table { table {
border-spacing: 4px; border-spacing: 4px;
margin: auto; margin: auto;
@@ -871,7 +877,6 @@ main.panel {
} }


.history-pane { .history-pane {
overflow: visible;
transition: all 0.2s; transition: all 0.2s;
.nav-btn { .nav-btn {
width: 1.5em; width: 1.5em;


||||||
x
 
000:0
Завантаження…
Відмінити
Зберегти