$args * @param mixed $output * * @throws \Exception * * @return void */ public function index(string &$route, array &$args, &$output): void { if (isset($args[0])) { $customer_id = (int)$args[0]; } else { $customer_id = 0; } if (isset($args[1])) { $type = (string)$args[1]; } else { $type = ''; } if (isset($args[2])) { $code = (string)$args[2]; } else { $code = ''; } // Customer $this->load->model('account/customer'); $customer_info = $this->model_account_customer->getCustomer($customer_id); if ($type == 'password' && $customer_info) { $this->load->language('mail/forgotten'); $store_name = html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'); $subject = sprintf($this->language->get('text_subject'), $store_name); $data['text_greeting'] = sprintf($this->language->get('text_greeting'), $store_name); $data['reset'] = $this->url->link('account/forgotten.reset', 'language=' . $this->config->get('config_language') . '&email=' . urlencode($customer_info['email']) . '&code=' . $code, true); $data['ip'] = oc_get_ip(); $data['store'] = $store_name; $data['store_url'] = $this->config->get('config_url'); if ($this->config->get('config_mail_engine')) { $mail_option = [ 'parameter' => $this->config->get('config_mail_parameter'), 'smtp_hostname' => $this->config->get('config_mail_smtp_hostname'), 'smtp_username' => $this->config->get('config_mail_smtp_username'), 'smtp_password' => html_entity_decode($this->config->get('config_mail_smtp_password'), ENT_QUOTES, 'UTF-8'), 'smtp_port' => $this->config->get('config_mail_smtp_port'), 'smtp_timeout' => $this->config->get('config_mail_smtp_timeout') ]; $mail = new \Opencart\System\Library\Mail($this->config->get('config_mail_engine'), $mail_option); $mail->setTo($customer_info['email']); $mail->setFrom($this->config->get('config_email')); $mail->setSender($store_name); $mail->setSubject($subject); $mail->setHtml($this->load->view('mail/forgotten', $data)); $mail->send(); } } } }