getCustomer(); } parent::__construct($customer); } public function getTemplateName(): string { return 'emails.members.user_info_update_order_notice'; } public function getSubject(): string { return "利用者情報変更受付のお知らせ"; } public function getMemberParams(): array { return [ 'zip_code' => $this->customer->zipCode, 'address' => $this->customer->address, 'phone_no' => $this->customer->phoneNumber, 'memo' => $this->app->memo, ]; } }