Extract Form Mail from Entourage 2004

J

Jeff Moore

I am trying to extract the form mail contents of e-mails with the
subject "Foo" and set the values into variables. My problem is that I
can seem to figure out how to hook into Entourage...help.

Values in the e-mail are like this:

first_name=foo
last_name=bar
....

Any help would be appreciated...
 
B

Barry Wainwright

I am trying to extract the form mail contents of e-mails with the
subject "Foo" and set the values into variables. My problem is that I
can seem to figure out how to hook into Entourage...help.

Values in the e-mail are like this:

first_name=foo
last_name=bar
...


Any help would be appreciated...

If you are familiar with applescript,

Set theMessage to content of item 1 of (get current messages)
Set theParagraphs to paragraphs of themessage

This will give you a list of the messages' paragraphs. Just iterate through
the list looking for your variable names.

Need more help? Just ask in this thread.
 
Top