Inbound Action - indexOf for Array Position
So I have created an inbound action and I am storing the email body text in a variable, splitting it on line breaks, and looking for the array position of specific text.var str = email.body_text; var arr = str.split('\n'); This code below returns 569...
