VMware Cloud Community
ZbyszekS
Enthusiast
Enthusiast
Jump to solution

Mail report with workflow status

Hey,

I managed to add to my workflow a script which is sending me an email with all needed information except one: who started the workflow. Is there any parameter or way to have that info in email??

thanks

Zbyszek

1 Solution

Accepted Solutions
iiliev
VMware Employee
VMware Employee
Jump to solution

Hi Zbyszek,

Within workflow, you can obtain the name of the user using 'workflow.runningUserName' scripting expression:

var username = workflow.runningUserName;

-Ilian

View solution in original post

2 Replies
iiliev
VMware Employee
VMware Employee
Jump to solution

Hi Zbyszek,

Within workflow, you can obtain the name of the user using 'workflow.runningUserName' scripting expression:

var username = workflow.runningUserName;

-Ilian

ZbyszekS
Enthusiast
Enthusiast
Jump to solution

works!!! thanks!!!

0 Kudos