RTF templates accepting JSON
We are trying to move away from XML
I want to send email in java with the following specifications?
HTML template : Indicating the structure of email. It should take in JSON document to fill in the dynamic parameters that need to be filled in during the run time
Java program should apply the JSON to HTML template, generate the email and send email
I am currently using RTF templates with XML and want to move away from XML
I want to use JSON, apply JSON to HTML templates for filling in the parameters and use Java to send mail.
Can someone suggest me some links which can achieve above functionality?