Skip to content

Commit

Permalink
更新 Mail.java
Browse files Browse the repository at this point in the history
  • Loading branch information
shulng committed Aug 27, 2024
1 parent e1e71e9 commit 4663245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cc/baka9/catseedlogin/util/Mail.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void sendMail(String receiveMailAccount, String subject, String co
email.setSubject(subject);
email.setMsg(content);
email.addTo(receiveMailAccount);
((HtmlEmail) email).setCharset("UTF-8");
email.setCharset("UTF-8");
email.send();

}
Expand Down

0 comments on commit 4663245

Please sign in to comment.