Created
May 30, 2016 17:33
-
-
Save chingovan/d81e13b369ec35732d1d2f97a56d0e88 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void sendEmail(ActionRequest actionRequest, ActionResponse actionResponse) { | |
String email = ParamUtil.getString(actionRequest, "email"); | |
String subject = ParamUtil.getString(actionRequest, "subject"); | |
String content = ParamUtil.getString(actionRequest, "content"); | |
System.out.println("Sending to " + email); | |
System.out.println("Subject: " + subject); | |
System.out.println("Content: " + content); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment