view(config('view.engine'), 'emails.verify-code', [ 'service_name' => $params['service_name'] ?? "邮箱绑定", 'sms_code' => $sms_code, 'domain' => $params['web_url'] ?? config('domain.web_url') ]); } /** * 系统错误通知 - 邮件模板 * * @param Throwable $throwable * @return string */ public function errorNotice(Throwable $throwable): string { return $this->view(config('view.engine'), 'emails.error-notice', [ 'throwable' => $throwable->getTraceAsString(), 'message' => $throwable->getMessage() ]); } }