Skip to content

Instantly share code, notes, and snippets.

@7LayersDesign
Last active December 21, 2015 15:49
Show Gist options
  • Save 7LayersDesign/6329748 to your computer and use it in GitHub Desktop.
Save 7LayersDesign/6329748 to your computer and use it in GitHub Desktop.
GMail config for PHP mail in Laravel 4
<?php
'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 465,
'encryption' => 'ssl',
'username' => 'your-email@gmail.com',
'password' => 'your-password',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment