How can I get BDM Values in Email Connector

1
0
-1

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.

1 answer

1
0
-1
This one is the BEST answer!

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

StringBuilder sb = new StringBuilder();
 
sb.append("<html>");
sb.append("<body>");
sb.append("Dear ABC,</br>");
sb.append("BDM Field 1 = " + myBDM.getField1());
sb.append("BDM Field 2 = " + myBDM.getField2());
sb.append("</body>");
sb.append("</html>");
 
return sb.toString();

regards
Seán

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

Notifications