cancel
Showing results for 
Search instead for 
Did you mean: 

3.4 workflow notify author

michaelc
Champ on-the-rise
Champ on-the-rise
Trying to build a proof of concept workflow.

in it I wish that the author be notified via email of any changes ( comments  etc ) to the document.
  any simple way to send an email to the author ?
1 REPLY 1

cjimenez2581
Champ in-the-making
Champ in-the-making
Trying to build a proof of concept workflow.

in it I wish that the author be notified via email of any changes ( comments  etc ) to the document.
  any simple way to send an email to the author ?
var mail = actions.create("mail");
       mail.parameters.to = initiator.properties.email;
       mail.parameters.subject = "flujo de validar " + bpm_workflowDescription;
       mail.parameters.from = bpm_assignee.properties.email;
       mail.parameters.text = "It's done";
       mail.execute(bpm_package);