Update ContactAdmin mail, set New Support Message subject

This commit is contained in:
Daniel Supernault 2021-07-26 19:23:55 -06:00
parent 15c4fdd90c
commit bc3add0525
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ class ContactAdmin extends Mailable
public function build() public function build()
{ {
$contact = $this->contact; $contact = $this->contact;
return $this->markdown('emails.contact.admin')->with(compact('contact')); return $this->subject('New Support Message')->markdown('emails.contact.admin')->with(compact('contact'));
} }
} }