I need a small help, I have two functions in a Agent function,
step 1-
Function one runs to get some values from a server in different geographic location so it takes long time to retrive the values and the retrived value should be sent to a set of users automatically.
step 2-
I have to send the same retrived value(from function one) to another set of users with some additions in that mail. In order to achive this I have the function two.Function two is another copy of Function one with some added contents.
The problem here is its taking too long time to send those mails. I mean the same Function is running twice so.
In order to reduce the time is there any option of sending(passing) the values which I got(retrived) in Function one to Function two.