Q: | Can Poco be used to pull out data from a message body and export that data into a CSV file? |
A: | Yes, it can. The following outlines the basics of the techniques you would use to do this:
Assuming the email you will be receiving has been structured so that you can parse it then you will need to create a script to run against your incoming mail. This script will contain the rules for parsing the body of the email (extracted from the message by using the ReadBody command). You will need a series of "StringPos" and "If" statements to determine whether or not the keywords that define your elements are present. The basic structure would look something like: |