Community Tip - You can change your system assigned username to something more personal in your community settings. X
Patrick,
Did you consider using groups or roles?
Hello Patrick,
We did some custmoziation to pick the recipients dynamically and send the notification from Workflow. You can write the custom code and embed it in the expression robot.
Let me know if you need to code to compose the email.
Thanks,
Mahesh KL
Hello Mahesh,
I am working on this topic. If you can share with me the to compose the email, it will be great.
i am interesting to see the code.
Thanks you.
Hi @JR_10423087
This is just example and uses a wt.mail.EMailMessage class
EMailMessage localEMailMessage = EMailMessage.newEMailMessage();
localEMailMessage.addRecipient(participant);
localEMailMessage.setOriginator(context.getOwner());
localEMailMessage.setSubject(null, "Email Subject" + context.getName(), new String[]{});
String Message = "html format body of email";
localEMailMessage.addPart(null, message, null, "text/html");
localEMailMessage.send(true);
hope this can help
PetrH
All,
Please ignore my previous email reply. Mistakenly sent. Sorry for that.
Ayyappan