sys_email.go 538 字节
Newer Older
M
maplepie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package v1

import (
	"fmt"
	"gin-vue-admin/global/response"
	"gin-vue-admin/service"
	"github.com/gin-gonic/gin"
)

// @Tags system
// @Summary 发送测试邮件
// @Security ApiKeyAuth
// @Produce  application/json
// @Success 200 {string} string "{"success":true,"data":{},"msg":"返回成功"}"
// @Router /email/emailTest [post]
func EmailTest(c *gin.Context) {
	err := service.EmailTest()
	if err != nil {
		response.FailWithMessage(fmt.Sprintf("发送失败,%v", err), c)
	} else {
		response.OkWithData("发送成功", c)
	}
}