基本的例子
你可以通过在应用程序的 .ENV 文件中添加/更改这些行来配置 Mail,并使用你的电子邮件提供商登录详细信息,例如将其与 gmail 一起使用,你可以使用:
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=yourEmail@gmail.com
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('john@doe.com');
$message->sender('john@doe.com');
$message->to(foo@bar.com);
$message->subject('Hello World');
});