Hi Mit,
Thanks for your reply.
Actually I am starting workflow using js and executing using rule.
I don't know where I can define custom email template.
Could you please help me with this?
if(document.type == "custom type"){
var workflow = actions.create("start-workflow");
workflow.parameters["bpm:workflowPackage"] = document;
workflow.parameters.workflowName = "custom workflow definition";
workflow.parameters["bpm:workflowPriority"] = "2";
workflow.parameters["bpm:sendEMailNotifications"] = true; // I want to define custom template for this action.
workflow.execute(document);
}
Thanks