수색…


기본 예제

전자 메일 공급자 로그인 세부 정보를 사용하여 응용 프로그램의 .ENV 파일에 다음 행을 추가 / 변경하여 Mail을 구성 할 수 있습니다 (예 : 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