mirror of https://github.com/elunez/eladmin
51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
package me.zhengjie.rest;
|
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import me.zhengjie.aop.log.Log;
|
|
import me.zhengjie.domain.vo.EmailVo;
|
|
import me.zhengjie.domain.EmailConfig;
|
|
import me.zhengjie.service.EmailService;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
/**
|
|
* 发送邮件
|
|
* @author 郑杰
|
|
* @date 2018/09/28 6:55:53
|
|
*/
|
|
@RestController
|
|
@RequestMapping("api/email")
|
|
@Api(tags = "工具:邮件管理")
|
|
public class EmailController {
|
|
|
|
private final EmailService emailService;
|
|
|
|
public EmailController(EmailService emailService) {
|
|
this.emailService = emailService;
|
|
}
|
|
|
|
@GetMapping
|
|
public ResponseEntity get(){
|
|
return new ResponseEntity<>(emailService.find(),HttpStatus.OK);
|
|
}
|
|
|
|
@Log("配置邮件")
|
|
@PutMapping
|
|
@ApiOperation("配置邮件")
|
|
public ResponseEntity emailConfig(@Validated @RequestBody EmailConfig emailConfig){
|
|
emailService.update(emailConfig,emailService.find());
|
|
return new ResponseEntity(HttpStatus.OK);
|
|
}
|
|
|
|
@Log("发送邮件")
|
|
@PostMapping
|
|
@ApiOperation("发送邮件")
|
|
public ResponseEntity send(@Validated @RequestBody EmailVo emailVo) throws Exception {
|
|
emailService.send(emailVo,emailService.find());
|
|
return new ResponseEntity(HttpStatus.OK);
|
|
}
|
|
}
|