isSMTP(); $this->SMTPAuth = TRUE; } public function configure($config) { $this->Host = $config->smtp->host; $this->Port = $config->smtp->port; $this->Username = $config->smtp->user; $this->Password = $config->smtp->pass; if ($config->smtp->tls) { $this->SMTPSecure = 'tls'; } $this->setFrom($config->mail->from, $config->mail->name); if ($config->mail->send_copies) { $this->addBCC($config->mail->from); } } public function sendTemplate(MailTemplate $template, string $subject, string $to, string $name) { $this->addAddress($to, $name); $this->isHTML(TRUE); $this->Subject = $subject; $html = $template->execute(); $this->Body = $html; $this->AltBody = strip_tags($html); $result = $this->send(); $this->clearAddresses(); return $result; } } ?>