How can I get BDM Values in Email Connector

Hello,

I am developing a process where I need to send email to a user after Initiated user fills the form(I am using BDM),
now how to use BDM values in email connector, I want to send what the form values entered by initiator in the Email connector.

You have to use the script editor to build up your email body, something similar to this:

StringBuilder sb = new StringBuilder();

sb.append(“”);
sb.append(“”);
sb.append(“Dear ABC,
”);
sb.append(“BDM Field 1 = " + myBDM.getField1());
sb.append(“BDM Field 2 = " + myBDM.getField2());
sb.append(””);
sb.append(“”);

return sb.toString();

regards
Seán

PS: If this reply answers your question, please mark as resolved.