|
|
@ -1,8 +1,8 @@
|
|
|
|
package org.jeecg.modules.api.controller;
|
|
|
|
package org.jeecg.modules.api.controller;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
import org.jeecg.common.api.dto.message.*;
|
|
|
|
|
|
|
|
import org.jeecg.common.api.dto.OnlineAuthDTO;
|
|
|
|
import org.jeecg.common.api.dto.OnlineAuthDTO;
|
|
|
|
|
|
|
|
import org.jeecg.common.api.dto.message.*;
|
|
|
|
import org.jeecg.common.system.api.ISysBaseAPI;
|
|
|
|
import org.jeecg.common.system.api.ISysBaseAPI;
|
|
|
|
import org.jeecg.common.system.vo.*;
|
|
|
|
import org.jeecg.common.system.vo.*;
|
|
|
|
import org.jeecg.modules.system.service.ISysUserService;
|
|
|
|
import org.jeecg.modules.system.service.ISysUserService;
|
|
|
@ -518,7 +518,7 @@ public class SystemAPIController {
|
|
|
|
* @param content
|
|
|
|
* @param content
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@GetMapping("/sendEmailMsg")
|
|
|
|
@GetMapping("/sendEmailMsg")
|
|
|
|
public void sendEmailMsg(String email,String title,String content){
|
|
|
|
public void sendEmailMsg(@RequestParam("email")String email,@RequestParam("title")String title,@RequestParam("content")String content){
|
|
|
|
this.sysBaseAPI.sendEmailMsg(email,title,content);
|
|
|
|
this.sysBaseAPI.sendEmailMsg(email,title,content);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|