I want to write simple mail sending JAX-RS Service using Jersey. Web Service would be target of HTML FORM tag and in a post call, it accept receivers address from <SELECT> list of HTML.
How can we read the data from <SELECT> in WebMethod using @FormParam param.
Is there any way to send this data to List<String> parameter of method?
Samples are below:
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.TEXT_HTML)
@WebMethod
public String sendEmail(@FormParam("toAddress") String[] toAddress,
@FormParam("cc") String cc,
@FormParam("bcc") String bcc,
@FormParam("from") String from,
@FormParam("subject") String subject,
@FormParam("msg") String msg,
@FormParam("host")String host,
@FormParam("contentType")String contentType,
@Context HttpServletRequest request) {
// ......
}
JSP Page:
<form action="http://localhost:8080/CloudMail/rs/CloudMailService" method="POST">
From : <input type="text" name='from'></input><br>
To : <select name='toAddress' multiple="true">
<option value="xyz@gmail.com">XYZ</option>
<option value="pqr@gmail.in">PQR</option>
<option value="abc@abc.in">ABC</option>
</select><br>
</form>