In my project, I am extracting emails from an app. When I have many emails stored after extraction in an argument (in_SentTo), I must select the first one and use the same argument (in_SentTo) to send the email. What is the correct value to do that?
and after the extract will be like this:
“first email;second email”
not work
in_SendTo.Split(“;”)(0)
The following errors were encountered while processing the workflow tree:
‘VisualBasicValue’: Compiler error(s) encountered processing expression “in_SendTo.Split(”;“)(0)”.
Option Strict On disallows implicit conversions from ‘String’ to ‘Char’.