# 使用 Gmail 寄信
在測試機測試的時候,為了節省郵件服務的開銷,我們可以使用 Gmail 當作我們測試的郵件服務,所以我們來介紹如何使用 Gmail 寄信
### 設定 `config/mail.php`
> driver 設為 `smtp`
> host 設為 `smtp.gmail.com`
> port 設為 `587`
> username 設為你要用來寄信的 Gmail 帳號 `kejyun@gmail.com`
> password 設為 Gmail 帳號的密碼
> pretend 設為 `true`,這樣才可以正常使用 Gmail 寄送
設定完後會像這樣:
~~~
// config/mail.php
return [
'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 587,
'from' => ['address' => 'kejyun@gmail.com', 'name' => 'KeJyun'],
'encryption' => 'tls',
'username' =>'kejyun@gmail.com',
'password' => 'abcdefghijklmnopqrstuvwxyz123456',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
];
~~~
### 測試使用 Gmail 寄信
~~~
Mail::raw('測試使用 Laravel 5 的 Gmail 寄信服務', function($message)
{
$message->to('kejyun@gmail.com');
});
~~~
這樣我們就可以使用 Gmail 去當作我們的郵件寄送服務了!!!
### 參考資料
- [Attempting to get Email to work in Laravel 5](http://stackoverflow.com/questions/29083520/attempting-to-get-email-to-work-in-laravel-5)
- [郵件 - Laravel.tw](http://laravel.tw/docs/5.0/mail)
- 介紹
- 環境
- .env 檔案
- 資料庫
- Migration (遷移)
- Eloquent Model (模型)
- 設定
- 關聯
- 魔術函式
- 使用 Eloquent
- 常見問題
- 無法取得查詢 Log
- 使用大量資料的方式新增時無法新增
- 使用中繼模型繼承 Eloquent 模型造成無法使用大量資料新增
- PostgreSQL
- 安裝 PostgreSQL ODBC driver
- HTTP
- 請求
- 中介層 (Middleware)
- 視圖 (View)
- 服務
- 認證登入(Auth)
- 郵件(Mail)
- 使用 Gmail 寄信
- 使用 Mailgun 寄信
- 隊列(Queue)
- database
- 非同步(async)
- 輔助方法 (Helpers)
- 自定義輔助方法
- 單元測試 (Unit Test)
- Post CSRF 錯誤
- 錯誤與日誌
- 在單元測試顯示例外
- 日誌記錄層級
- 日誌巨集
- 加密
- 雜湊
- Elixir
- 使用 Elixir 合併 CSS 與 JS
- 設計模式
- 服務容器
- PSR
- Model 模型
- 學習資源
- 套件
- Debug
- Artisan tail
- 工具
- Carbon
- 設計模式
- 其他常見問題
- Call to undefined method getCachedCompilePath()
- 變更專案目錄名稱導致 View 無法讀取
- Laravel 5.1 目錄結構異動
- 學習資源
- 官方
- 社群
- 會議議程
- 工作
- 文件
- 文章
- 套件
- 服務工具
- 教學影片
- 教學網站
- 編輯開發
- 主機
- 成功案例