yangys
2025-09-18 a3048fa6fa72fa3cc5da2c43c59bd000e00c9599
blade-service/blade-mdm/src/main/java/org/springblade/mdm/test/MyTestController.java
@@ -113,8 +113,8 @@
   @GetMapping("/sendmail")
   @Operation(summary = "sendmail", description = "sendmail")
   public R<Void> sendmail(String code) throws IOException, MessagingException {
   public R<Void> sendmail(String from,String to,String subject,String content) throws IOException, MessagingException {
      this.mailService.send(from,to,null,null,subject,content,null);
      return R.success();
   }