| 1 | <?php |
||
| 11 | class ContactFormSubmitted extends Mailable implements ShouldQueue |
||
| 12 | { |
||
| 13 | use Queueable, SerializesModels; |
||
| 14 | |||
| 15 | /** @var \App\Models\FormResponse */ |
||
| 16 | public $formResponse; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Create a new message instance. |
||
| 20 | * |
||
| 21 | * @param \App\Models\FormResponse $formResponse |
||
| 22 | */ |
||
| 23 | public function __construct(FormResponse $formResponse) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Build the message. |
||
| 30 | * |
||
| 31 | * @return $this |
||
| 32 | */ |
||
| 33 | public function build() |
||
| 40 | } |
||
| 41 |