taskuniverse / contact-form
Simple contact template via smtp for laravel
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=7.2.0
- laracasts/flash: ^3.0
This package is auto-updated.
Last update: 2025-03-14 04:19:28 UTC
README
This composer package offers a functional contact form template via smtp.
Installation
composer require taskuniverse/contact-form composer update composer dump-autoload Config .env file php artisan config:clear
Config .env file
For gmail accounts
Enable in your gmail account the access to third party apps.
MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=587 MAIL_USERNAME=YOUR-EMAIL MAIL_FROM_NAME=EMAIL-NAME MAIL_PASSWORD=YOUR-PASSWORD-EMAIL MAIL_ENCRYPTION=tls
For Outlook accounts
Enviroment var 'MAIL_FROM_NAME' is optional.
MAIL_DRIVER=smtp MAIL_HOST=smtp.office365.com MAIL_PORT=587 MAIL_FROM_ADDRESS=YOUR-OUTLOOK-EMAIL MAIL_USERNAME=YOUR-OUTLOOK-EMAIL MAIL_PASSWORD=YOUR-PASSWORD-EMAIL MAIL_ENCRYPTION=tls
Modify views
If you want to customer the contact form partials, you can run:
php artisan vendor:publish --provider="Taskuniverse\ContactForm\ContactFormServiceProvider"
Usage
Navigate to <host>/contact
Tested
- php 7.2
- laravel 5.8