How to merge multiple field values into one
Email Parser processes the emails running items (Email sources, Parsers and Actions) one after another, in a sequential way. In each step, a set of fields are created based on the results of the previous steps. For instance, an Email Source creates the field Subject and then a Parser can use this field to capture, let’s say, an invoice number.
There are fields, like the To, CC and BCC that can contain multiple values. For example, the following email contains two values in the CC field:

Multiple field values is something that also happens as a result of parsing, for instance, the body of an email:

Having the values separated, like in an spreadsheet, is what makes most sense in the majority of the cases. But it could happen that you need them merged into a single text value. In order to get this you have to run a small script like the following:
read more …