verifyLink = $verifyLink; $this->verifyExpireMinute = $verifyExpireMinute; $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.verifyLink', with: [ 'verifyLink' => $this->verifyLink, 'verifyExpireMinute' => $this->verifyExpireMinute, 'email' => $this->email ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments() { return []; } }