25% off on first invoice for all services*

SPRING SALE

Use coupon

*Offer valid for new customers only

25% off on first invoice for all services*

SPRING SALE

Use coupon

*Offer valid for new customers only

Need help?

Our experts have had an average response time of 11.43 minutes in March 2024 to fix urgent issues.

We will keep your servers stable, secure, and fast at all times for one fixed price.

Laravel Contact Form to Send Emails with SendGrid – How to setup

by | Feb 2, 2021

Wondering how to Create a Laravel Contact Form to Send Emails with SendGrid? We can help you.

Having a contact form on the website makes it easy for the visitors on the web page to contact us directly.

Here at Bobcares, we often get requests from our clients to set up a contact form to send emails as a part of our Server Management services.

In this article, we will see how our Expert Support Engineers create a Laravel contact form to send an email with the help of SendGrid.

Steps to Create a Laravel Contact Form to Send Emails with SendGrid

We know that Laravel is a free, open-source PHP framework, based on Symfony and helps in creating web applications.

It is necessary to have an SMTP server for sending emails through the contact form.

For this, we will use SendGrid which is a cloud-based SMTP provider that allows us to send email without having to maintain email servers.

A SendGrid account and a fully registered domain name pointed to the server are the prerequisites for this setup.

We will see the steps that our Support Techs follow for creating a Laravel contact form to send emails with SendGrid.

Creating the Sender Identity

First, we will have to verify the ownership of the domain name in SendGrid so that it allows us to send emails.

We can follow the below steps to verify the domain.

1. First, go to the SendGrid account

2. And take the Dashboard.

3. Then click on Authenticate your Domain.

4. After this we need to specify our DNS host and choose to brand the links for the domain.

5. Select No for email link branding.

6. Then click Next and on the next page, specify the domain name.

7. Finally, we will add the DNS records provided by SendGrid to complete their verification process.

8. After adding the DNS records to the DNS zone,  we can go back to SendGrid and click the Verify button.

9. Now we will use the Laravel .env file to generate an API key.

10. We will click on API Keys first and then click on the Create API Key button.

11. For security, we will set the API Key Permissions to Restricted Access.

12. After that, we will add the Mail Send permissions.

13. Finally, click on the Create & View button to get the API key.

We will save this API key for further use.

Configuring the SMTP Details

The .env file in Laravel will store various configuration options for our application environment.

Using the following steps we can configure the SMTP details:

1. We will go to the /var/www/travellist directory to access  the .env file with the following command:

$ cd /var/www/travellist

2. After that, open the .env file:

$ nano .env

3. To change the MAIL variables we will alert the MAIL_ settings and configure the variables given below:

. . .
MAIL_MAILER=smtp
MAIL_HOST=smtp.sendgrid.net
MAIL_PORT=587
MAIL_USERNAME=apikey
MAIL_PASSWORD=sendgrid_api_key
MAIL_ENCRYPTION=tls
. . .

4. Save and exit the file.

Creating the Controller

The controller we create will handle our POST and GET requests for the contact form page.

1. We will use the following artisan command in order to create a controller called ContactController in Laravel:

$ php artisan make:controller ContactController

2. Then run the following to edit the ContactController.php file:

$ nano app/Http/Controllers/ContactController.php

3. To include the Laravel Mail facade add the following:

4. Then we will add the method that will handle our GET requests and return the contact page view:

class ContactController extends Controller
{
public function contact(){
return view('contact');
}
}

5. Finally, we will add a method that will handle the POST requests and send out the emails:

class ContactController extends Controller
{
public function contact(){
return view('contact');
}

public function contactPost(Request $request){
$this->validate($request, [
'name' => 'required',
'email' => 'required|email',
'comment' => 'required'
]);

Mail::send('email', [
'name' => $request->get('name'),
'email' => $request->get('email'),
'comment' => $request->get('comment') ],
function ($message) {
$message->from('youremail@your_domain');
$message->to('youremail@your_domain', 'Your Name')
->subject('Your Website Contact Form');
});

return back()->with('success', 'Thanks for contacting me, I will get back to you soon!');

}
}

6. Save and exit the file.

We will handle the validation inside the contactPost() method with the $this->validate() method.

Inside the validation method, we will specify that the name, email, and comment are required.

When validation is successful, the Mail::send() method constructs the email body and subject and then sends out the email.

Finally, if the email is sent successfully, we will return a success message that displays to the users.

[Need assistance to create controller? We are happy to help you!]

Creating the Routes

Laravel routes allow us to create SEO-friendly URLs for our application.

Here we will create two routes in our routes/web.php file to use the methods we have set up.

1. First, open routes/web.php with the following command:

$ nano routes/web.php

2. Next we will add the GET route at the bottom of the file:

name('contact');

3. After that we will add a POST route and map it to our contactPost method, which will handle the user contact form submissions:

name('contact');
Route::post('/contact', 'ContactController@contactPost')->name('contactPost');

4. Finally, save and exit the file.

Creating the Blade Views

1. First, we will create a file resources/views/contact.blade.php:

$ nano resources/views/contact.blade.php

2. Then add the following content:







Contact Form with Laravel and SendGrid





@if(session('success'))
{{ session('success') }}
@endif
@csrf
{{ $errors->first('email') }}
{{ $errors->first('name') }}
{{ $errors->first('comment') }}

3. Save and exit this file.

4. After that, we will create our email view by opening the resources/views/email.blade.php file with the following command:

$ nano resources/views/email.blade.php

5. Then add the following content:

Inquiry from: {{ $name }}

Email: {{ $email }}

Message: {{ $comment }}

6. Save and exit the file.

[Need assistance? We are happy to help you!]

Conclusion

To conclude, we saw the steps our Support Engineers follow to create a Laravel contact form to send emails with the help of SendGrid.

 

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

var google_conversion_label = "owonCMyG5nEQ0aD71QM";

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

Categories

Tags

Privacy Preference Center

Necessary

Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies.

PHPSESSID - Preserves user session state across page requests.

gdpr[consent_types] - Used to store user consents.

gdpr[allowed_cookies] - Used to store user allowed cookies.

PHPSESSID, gdpr[consent_types], gdpr[allowed_cookies]
PHPSESSID
WHMCSpKDlPzh2chML

Statistics

Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.

_ga - Preserves user session state across page requests.

_gat - Used by Google Analytics to throttle request rate

_gid - Registers a unique ID that is used to generate statistical data on how you use the website.

smartlookCookie - Used to collect user device and location information of the site visitors to improve the websites User Experience.

_ga, _gat, _gid
_ga, _gat, _gid
smartlookCookie
_clck, _clsk, CLID, ANONCHK, MR, MUID, SM

Marketing

Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.

IDE - Used by Google DoubleClick to register and report the website user's actions after viewing or clicking one of the advertiser's ads with the purpose of measuring the efficacy of an ad and to present targeted ads to the user.

test_cookie - Used to check if the user's browser supports cookies.

1P_JAR - Google cookie. These cookies are used to collect website statistics and track conversion rates.

NID - Registers a unique ID that identifies a returning user's device. The ID is used for serving ads that are most relevant to the user.

DV - Google ad personalisation

IDE, test_cookie, 1P_JAR, NID, DV, NID
IDE, test_cookie
1P_JAR, NID, DV
NID
hblid

Security

These are essential site cookies, used by the google reCAPTCHA. These cookies use an unique identifier to verify if a visitor is human or a bot.

SID, APISID, HSID, NID, PREF
SID, APISID, HSID, NID, PREF