Laravel with Gmail
修改 app/config/mail.php:
- host 為 smtp.gmail.com
- port 為 465
- encryption 為 ssl
| 1 2 3 4 5 6 7 8 9 10 | <?php return array(     'driver' => 'smtp',     'host' => 'smtp.gmail.com',     'port' => 465,     'encryption' => 'ssl', ); | 
Test:
| 1 2 3 4 5 6 7 8 | Route::get('/MailTest', function() {     $data['name'] = 'Starck Lin';     Mail::send('emails.welcome', $data, function($message)     {     }); }); |