Mail's dictionary also has a 'content' property of a 'message'. You
could read the content of a message, that use 'offset' to see if the
content contains the address.
if (offset of anAddress in theContent) > 0 then
-- the message contains the address anAddress
If you want to find all addresses in a message, you might first find
all "@" characters, using either offset or text item delimiters.
Even simpler, can you use a smart mailbox?
On Jun 2, 2007, at 9:40 AM, Jeffers wrote:
My understanding is that he wants to get addresses that are embedded
in the body of the message, not addresses in the headers.
Michelle
Yes that is correct, i want to search the body of the message for an
email address. Any ideas?