I'm building an automation that reads an excel file with two columns (name and date), stores this to a collection and then sends out calendar invites based on those same parameters.
Extracting the data and sending the invites are both working fine individually but what I need to do now is convert the column that contains the names into email address format e.g. 'Person One' into '[email protected]'.
Added to this some of the 'name' rows contain two people in the following format - 'Person One & Person Two' so I'd need to split them into two seperate email addresses so they can both receieve the calendar invite for the appropriate date.
I'm guessing that I should be looking to do this using something in the 'Utility - Strings' function? Can anyone point me in the right direction? Much appreciated, thanks
needs to become
There are two major components you'll need to accomplish this conversion of a name to an email address:
&
(space-ampersand-space) sequence..
) characters and appending the@email.com
domain.As such, your process would look similar to the following:
You can use this in your Blue Prism 6.9 environment by saving the following XML as a
.bpprocess
or.xml
file and importing it using theFile > Import > Process / Object
menu option in the Blue Prism Interactive Client: