Quellcode durchsuchen

Add reply-to for user's tickets

master
Immanuel Onyeka vor 3 Jahren
Ursprung
Commit
2f8b115f27
2 geänderte Dateien mit 7 neuen und 2 gelöschten Zeilen
  1. +1
    -1
      app/Mail/SupportTicket.php
  2. +6
    -1
      resources/scss/main.scss

+ 1
- 1
app/Mail/SupportTicket.php Datei anzeigen

@@ -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;
}
}

+ 6
- 1
resources/scss/main.scss Datei anzeigen

@@ -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;


Laden…
Abbrechen
Speichern