MailerController.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\admin\controller;
  12. use cmf\controller\AdminBaseController;
  13. use think\Validate;
  14. class MailerController extends AdminBaseController
  15. {
  16. /**
  17. * 邮箱配置
  18. * @adminMenu(
  19. * 'name' => '邮箱配置',
  20. * 'parent' => 'admin/Setting/default',
  21. * 'display'=> true,
  22. * 'hasView'=> true,
  23. * 'order' => 10,
  24. * 'icon' => '',
  25. * 'remark' => '邮箱配置',
  26. * 'param' => ''
  27. * )
  28. */
  29. public function index()
  30. {
  31. $emailSetting = cmf_get_option('smtp_setting');
  32. $this->assign($emailSetting);
  33. return $this->fetch();
  34. }
  35. /**
  36. * 邮箱配置
  37. * @adminMenu(
  38. * 'name' => '邮箱配置提交保存',
  39. * 'parent' => 'index',
  40. * 'display'=> false,
  41. * 'hasView'=> false,
  42. * 'order' => 10000,
  43. * 'icon' => '',
  44. * 'remark' => '邮箱配置提交保存',
  45. * 'param' => ''
  46. * )
  47. */
  48. public function indexPost()
  49. {
  50. $post = array_map('trim', $this->request->param());
  51. if (in_array('', $post) && !empty($post['smtpsecure'])) {
  52. $this->error("不能留空!");
  53. }
  54. cmf_set_option('smtp_setting', $post);
  55. $this->success("保存成功!");
  56. }
  57. /**
  58. * 邮件模板
  59. * @adminMenu(
  60. * 'name' => '邮件模板',
  61. * 'parent' => 'index',
  62. * 'display'=> false,
  63. * 'hasView'=> true,
  64. * 'order' => 10000,
  65. * 'icon' => '',
  66. * 'remark' => '邮件模板',
  67. * 'param' => ''
  68. * )
  69. */
  70. public function template()
  71. {
  72. $allowedTemplateKeys = ['verification_code'];
  73. $templateKey = $this->request->param('template_key');
  74. if (empty($templateKey) || !in_array($templateKey, $allowedTemplateKeys)) {
  75. $this->error('非法请求!');
  76. }
  77. $template = cmf_get_option('email_template_' . $templateKey);
  78. $this->assign($template);
  79. return $this->fetch('template_verification_code');
  80. }
  81. /**
  82. * 邮件模板提交
  83. * @adminMenu(
  84. * 'name' => '邮件模板提交',
  85. * 'parent' => 'index',
  86. * 'display'=> false,
  87. * 'hasView'=> false,
  88. * 'order' => 10000,
  89. * 'icon' => '',
  90. * 'remark' => '邮件模板提交',
  91. * 'param' => ''
  92. * )
  93. */
  94. public function templatePost()
  95. {
  96. $allowedTemplateKeys = ['verification_code'];
  97. $templateKey = $this->request->param('template_key');
  98. if (empty($templateKey) || !in_array($templateKey, $allowedTemplateKeys)) {
  99. $this->error('非法请求!');
  100. }
  101. $data = $this->request->param();
  102. unset($data['template_key']);
  103. cmf_set_option('email_template_' . $templateKey, $data);
  104. $this->success("保存成功!");
  105. }
  106. /**
  107. * 邮件发送测试
  108. * @adminMenu(
  109. * 'name' => '邮件发送测试',
  110. * 'parent' => 'index',
  111. * 'display'=> false,
  112. * 'hasView'=> true,
  113. * 'order' => 10000,
  114. * 'icon' => '',
  115. * 'remark' => '邮件发送测试',
  116. * 'param' => ''
  117. * )
  118. */
  119. public function test()
  120. {
  121. if ($this->request->isPost()) {
  122. $validate = new Validate([
  123. 'to' => 'require|email',
  124. 'subject' => 'require',
  125. 'content' => 'require',
  126. ]);
  127. $validate->message([
  128. 'to.require' => '收件箱不能为空!',
  129. 'to.email' => '收件箱格式不正确!',
  130. 'subject.require' => '标题不能为空!',
  131. 'content.require' => '内容不能为空!',
  132. ]);
  133. $data = $this->request->param();
  134. if (!$validate->check($data)) {
  135. $this->error($validate->getError());
  136. }
  137. $result = cmf_send_email($data['to'], $data['subject'], $data['content']);
  138. if ($result && empty($result['error'])) {
  139. $this->success('发送成功!');
  140. } else {
  141. $this->error('发送失败:' . $result['message']);
  142. }
  143. } else {
  144. return $this->fetch();
  145. }
  146. }
  147. }