Skip to content
Advertisement

Laravel : Fetch contact form data into notification facade mail

Just made a contact me form on my website and I would like to send an email to the website’s admin when someone sends a message. I’m using the Notification Façade in Laravel to do so, I managed to send the email but I can’t fetch the contact form’s data in the mail. How can I achieve that ?

ContactController.php

JavaScript

Advertisement

Answer

Just pass your contact into constructor:

JavaScript

There, in notification, you also have to add property and process it in constructor

JavaScript

Then you can use $this->contact in notification.

More info you can find here.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement