Hello-
I’m trying to do something fairly simple. I want to loop through an email folder and use the email body data to string out a URL and some other basic things.
Essentially, I have an Input of Email Body Data and need to string out a URL and return it back to the parent bot. I have this scenario for multiple things…..some more complex than others. In other programming I would use a Function to do this…
Function GetURL (emailBody)
‘Do some stuff
GetURL = myURL
End Function
I’m having issues doing this in a loop using emails. Does anyone have any suggestions. Here is the basic idea:
Email Loop >>>>>>>>>>
Email1……..etc
GetURL(Input=Email1Data, Output=URL)
GetSSN(Input=URL, Output=SSN)
GetTaskType(Input=URL, Output=TaskType)
GetPPLSoftFlag(Input=SSN, Output=Yes or No)
GetOracleFlag(Input=SSN, Output=Yes or No)
GetLegacyFlag(Input=SSN, Output=Yes or No)
…...etc.
Go to Next Email>>>>>>>>»
Can someone kindly point me in the right direction. I feel like I am missing something very simple.
I feel like the loop is in a Parent Bot and all the other functions listed above are child bots if that makes any sense?