l10n = $l10n; $this->config = $config; $this->userSession = $userSession; $this->defaults = $defaults; $this->mailer = $mailer; $this->defaultMailAddress = $defaultMailAddress; } /** * Sets the email settings * @param string $mail_domain * @param string $mail_from_address * @param string $mail_smtpmode * @param string $mail_smtpsecure * @param string $mail_smtphost * @param string $mail_smtpauthtype * @param int $mail_smtpauth * @param string $mail_smtpport * @return array */ public function setMailSettings($mail_domain, $mail_from_address, $mail_smtpmode, $mail_smtpsecure, $mail_smtphost, $mail_smtpauthtype, $mail_smtpauth, $mail_smtpport) { $params = get_defined_vars(); $configs = []; foreach($params as $key => $value) { $configs[$key] = (empty($value)) ? null : $value; } // Delete passwords from config in case no auth is specified if ($params['mail_smtpauth'] !== 1) { $configs['mail_smtpname'] = null; $configs['mail_smtppassword'] = null; } $this->config->setSystemValues($configs); return array('data' => array('message' => (string) $this->l10n->t('Saved') ), 'status' => 'success' ); } /** * Store the credentials used for SMTP in the config * @param string $mail_smtpname * @param string $mail_smtppassword * @return array */ public function storeCredentials($mail_smtpname, $mail_smtppassword) { $this->config->setSystemValues([ 'mail_smtpname' => $mail_smtpname, 'mail_smtppassword' => $mail_smtppassword, ]); return array('data' => array('message' => (string) $this->l10n->t('Saved') ), 'status' => 'success' ); } /** * Send a mail to test the settings * @return array */ public function sendTestMail() { $email = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'email', ''); if (!empty($email)) { try { $message = $this->mailer->createMessage(); $message->setTo([$email => $this->userSession->getUser()->getDisplayName()]); $message->setFrom([$this->defaultMailAddress]); $message->setSubject($this->l10n->t('test email settings')); $message->setPlainBody('If you received this email, the settings seem to be correct.'); $this->mailer->send($message); } catch (\Exception $e) { return [ 'data' => [ 'message' => (string) $this->l10n->t('A problem occurred while sending the email. Please revise your settings. (Error: %s)', [$e->getMessage()]), ], 'status' => 'error', ]; } return array('data' => array('message' => (string) $this->l10n->t('Email sent') ), 'status' => 'success' ); } return array('data' => array('message' => (string) $this->l10n->t('You need to set your user email before being able to send test emails.'), ), 'status' => 'error' ); } }