Not able to see the data in the placeholder in the email

0
Hi,   I am trying to send an email using email-with-templates module. But, I am trying to add a placeholder to the email body, but I am not getting data in the placeholder. I used the placeholder in the email template as below: “{%personalMessage%}”. I tried with single inverted comma and also without inverted commas, but I did not get that. Please help me in resolving this
asked
1 answers
0

You dont have to give any quotes!

Just {%personalMessage%} is enough.

 

More importantly you need to pass the data object which contains the data that this placeholder should replace. Are you passing that to the Java Action or the MF you are using?

 

FYI 1 such java action is Send Email with Template which takes in the DataObject which has the attributes that the tokens should replace, EmailAccount and EmailTemplate. I just tested and it works well.

answered