Bot is reading message body.
The case is that sometime a user send a message from phone (iPhone) and there is a link included in a body which I do not want to read.
Ok I was able to add first Assign
varIndex = Array.IndexOf(var_array_mailMessage, “Get Outlook for IOS”)
(varIndex is Int & var_array_mailMessage is Strin
then when
IF varIndex > 0
is true I add another Assign
var_array_mailMessage = var_array_mailMessage.RemoveAt(varIndex)
and I have an error saying removeat is not member of “SystemArray”
that was my bad, RemoveAt is an extension, since arrays cannot be changed… i guess you should use that same IF condition where you will use that data and just ignore it instead of removing…