您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何在Laravel框架中使用smtp發送郵件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
具體如下:
1、.env文件中配置
MAIL_DRIVER=smtp
MAIL_HOST=smtp.郵箱后綴
MAIL_PORT=郵件服務器發送端口
MAIL_USERNAME=發送方郵件地址
MAIL_PASSWORD=發送方郵箱生成的第三方登陸碼
MAIL_FROM_ADDRESS=發送郵箱地址
MAIL_FROM_NAME=發送方名稱
2、config目錄下mail.php文件配置
可以不配置,因為會被.env文件覆蓋掉。(只有在.env中沒有的時候才會去該文件中取值)
3、app/console/commonds/sendMail.php
namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Support\Facades\Mail; class SendMailCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'demo:SendMail'; /** * The console command description. * * @var string */ protected $description = '測試腳本SendMail'; /** * constructor */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { $content = '這是一封的測試郵件.'; $toMail = '目標郵箱'; Mail::raw($content, function ($message) use ($toMail) { $message->subject('[ 測試 ] 測試郵件SendMail - ' .date('Y-m-d H:i:s')); $message->to($toMail); }); } }
4、測試
cmd切換到項目根目錄下,執行
php artisan demo:SendMail
上述就是小編為大家分享的如何在Laravel框架中使用smtp發送郵件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。