Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Laravel Application Development Cookbook

You're reading from   Laravel Application Development Cookbook Since Laravel is so versatile, one of the best learning routes is a cookbook. We've included lots of recipes and guidance on building web application, both simple and complex. It's a pick & mix approach that works brilliantly.

Arrow left icon
Product type Paperback
Published in Oct 2013
Publisher Packt
ISBN-13 9781782162827
Length 272 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Terry Matula Terry Matula
Author Profile Icon Terry Matula
Terry Matula
Arrow right icon
View More author details
Toc

Table of Contents (18) Chapters Close

Laravel Application Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Setting Up and Installing Laravel FREE CHAPTER 2. Using Forms and Gathering Input 3. Authenticating Your Application 4. Storing and Using Data 5. Using Controllers and Routes for URLs and APIs 6. Displaying Your Views 7. Creating and Using Composer Packages 8. Using Ajax and jQuery 9. Using Security and Sessions Effectively 10. Testing and Debugging Your App 11. Deploying and Integrating Third-party Services into Your Application Index

Sending an e-mail using Laravel and jQuery


When creating a contact form, we may choose to let the user send the form asynchronously. Using Laravel and jQuery, we can have the form submitted without needing the user to go to a different page.

Getting ready

For this recipe, we need a standard Laravel installation and our mail client properly configured. We can update our mail configuration in the app/config/mail.php file.

How to do it...

To complete this recipe, follow the given steps:

  1. In the views directory, create a file named emailform.php as shown in the following code:

      <!doctype html>
      <html lang="en">
      <head>
      <meta charset="utf-8">
      <title></title>
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
      </head>
      <body>
      <div id="container">
      <div id="error"></div>
      <form id="email-form">
      <label>To: </label>
      <input name="to" type="email"><br...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image