verifyCode = $verifyCode; $this->email = $email; } /** * Get the message envelope. * * @return \Illuminate\Mail\Mailables\Envelope */ public function envelope() { return new Envelope( subject: '이메일 소유자 확인 인증번호입니다.', ); } /** * Get the message content definition. * * @return \Illuminate\Mail\Mailables\Content */ public function content() { return new Content( view: 'emails.verifyCode', with: [ 'verifyCode' => $this->verifyCode, 'email' => $this->email ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments() { return []; } }