サーチ…


基本的な例

メールの設定は、アプリケーションの.ENVファイルに次の行を電子メールプロバイダのログイン情報とともに追加/変更するだけで設定できます。たとえば、gmailで使用する場合などです。

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=yourPassword
MAIL_ENCRYPTION=tls

次に、Mailを使用して電子メールを送信することができます。

$variable = 'Hello world!'; // A variable which can be use inside email blade template.
Mail::send('your.blade.file', ['variable' => $variable], function ($message) {
            $message->from('[email protected]');
            $message->sender('[email protected]');
            $message->to([email protected]);
            $message->subject('Hello World');
        });


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow