12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Mail;
- use Illuminate\Bus\Queueable;
- use Illuminate\Mail\Mailable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use App\Contact;
- class ContactAdmin extends Mailable
- {
- use Queueable, SerializesModels;
- protected $contact;
- /**
- * Create a new message instance.
- *
- * @return void
- */
- public function __construct(Contact $contact)
- {
- $this->contact = $contact;
- }
- /**
- * Build the message.
- *
- * @return $this
- */
- public function build()
- {
- $contact = $this->contact;
- return $this->subject('New Support Message')->markdown('emails.contact.admin')->with(compact('contact'));
- }
- }
|