We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a0e00a commit 3557f29Copy full SHA for 3557f29
2 files changed
pom.xml
@@ -19,6 +19,7 @@
19
* version history
20
********************************************
21
1.3.8
22
+* #309 Add `templatePath` method into `Mailer.Util`
23
* #307 java.lang.IllegalStateException: parent context not found
24
* #306 Allow user to set content through `Mailer.Util`
25
* #305 Add `attach(...)` methods into `Mailer.Util`
src/main/java/act/util/ActContext.java
@@ -405,11 +405,11 @@ public static ActContext currentContext() {
405
if (null != ctx) {
406
return ctx;
407
}
408
- ctx = MailerContext.current();
+ ctx = CliContext.current();
409
410
411
412
- ctx = CliContext.current();
+ ctx = MailerContext.current();
413
414
415
0 commit comments