Sök…
Grundläggande exempel
Du kan konfigurera Mail genom att bara lägga till / ändra dessa rader i appens .ENV- fil med din inloggningsinformation för din e-postleverantör, till exempel för att använda den med gmail som du kan använda:
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=yourPassword
MAIL_ENCRYPTION=tls
Sedan kan du börja skicka e-postmeddelanden med Mail, till exempel:
$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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow