In IF condition.
if mail.subject.contains(“Data”)
{ Perform Then operation
}
else { Nothing
}
My Problem: I need to check for 1 more word for e.g:
if mail.subject.contains(“Data”) Andalso mail.subject.contains(inputs)
here input is an Arr[String]
so, if input has 3 words like “A”, “B” and “C”… any of the 3 if present, performs Then condition…
But the if condition dose not except Arr[Strings]…
How to get solve this without using else if etc
So am Using the Filter in Get Outlook Mail message to save attachments from a particular mailID… So, I cant use for each mail activity
Thus, using Normal For each