芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Services/Mail/TechVillageMail.php
email = new EmailController(); $this->response = [ 'status' => false, 'message' => __('Email can not be sent, please contact the website administrator.') ]; } /** * Get Email Template based on tempId * * @param int tempId * @return array */ protected function getEmailTemplate($alias) { if (!isMailEnabled() || empty($alias)) { return $this->response; } $template = EmailTemplate::alias($alias)->defaultLanguage()->type('email')->first(['subject', 'body']); if (empty($template->subject) || empty($template->body)) { $template = EmailTemplate::alias($alias)->englishLanguage()->type('email')->first(['subject', 'body']); } if (!$template) { return $this->response; } return $this->response = [ 'status' => true, 'template' => $template ]; } }