123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-04-30
- // +—————————————————————————————————————————————————————————————————————
- namespace app\admin\controller;
- use cmf\controller\AdminBaseController;
- use think\Validate;
- class MailerController extends AdminBaseController
- {
- /**
- * 邮箱配置
- * @adminMenu(
- * 'name' => '邮箱配置',
- * 'parent' => 'admin/Setting/default',
- * 'display'=> true,
- * 'hasView'=> true,
- * 'order' => 10,
- * 'icon' => '',
- * 'remark' => '邮箱配置',
- * 'param' => ''
- * )
- */
- public function index()
- {
- $emailSetting = cmf_get_option('smtp_setting');
- $this->assign($emailSetting);
- return $this->fetch();
- }
- /**
- * 邮箱配置
- * @adminMenu(
- * 'name' => '邮箱配置提交保存',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '邮箱配置提交保存',
- * 'param' => ''
- * )
- */
- public function indexPost()
- {
- $post = array_map('trim', $this->request->param());
- if (in_array('', $post) && !empty($post['smtpsecure'])) {
- $this->error("不能留空!");
- }
- cmf_set_option('smtp_setting', $post);
- $this->success("保存成功!");
- }
- /**
- * 邮件模板
- * @adminMenu(
- * 'name' => '邮件模板',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '邮件模板',
- * 'param' => ''
- * )
- */
- public function template()
- {
- $allowedTemplateKeys = ['verification_code'];
- $templateKey = $this->request->param('template_key');
- if (empty($templateKey) || !in_array($templateKey, $allowedTemplateKeys)) {
- $this->error('非法请求!');
- }
- $template = cmf_get_option('email_template_' . $templateKey);
- $this->assign($template);
- return $this->fetch('template_verification_code');
- }
- /**
- * 邮件模板提交
- * @adminMenu(
- * 'name' => '邮件模板提交',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '邮件模板提交',
- * 'param' => ''
- * )
- */
- public function templatePost()
- {
- $allowedTemplateKeys = ['verification_code'];
- $templateKey = $this->request->param('template_key');
- if (empty($templateKey) || !in_array($templateKey, $allowedTemplateKeys)) {
- $this->error('非法请求!');
- }
- $data = $this->request->param();
- unset($data['template_key']);
- cmf_set_option('email_template_' . $templateKey, $data);
- $this->success("保存成功!");
- }
- /**
- * 邮件发送测试
- * @adminMenu(
- * 'name' => '邮件发送测试',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '邮件发送测试',
- * 'param' => ''
- * )
- */
- public function test()
- {
- if ($this->request->isPost()) {
- $validate = new Validate([
- 'to' => 'require|email',
- 'subject' => 'require',
- 'content' => 'require',
- ]);
- $validate->message([
- 'to.require' => '收件箱不能为空!',
- 'to.email' => '收件箱格式不正确!',
- 'subject.require' => '标题不能为空!',
- 'content.require' => '内容不能为空!',
- ]);
- $data = $this->request->param();
- if (!$validate->check($data)) {
- $this->error($validate->getError());
- }
- $result = cmf_send_email($data['to'], $data['subject'], $data['content']);
- if ($result && empty($result['error'])) {
- $this->success('发送成功!');
- } else {
- $this->error('发送失败:' . $result['message']);
- }
- } else {
- return $this->fetch();
- }
- }
- }
|