Re: Suggestions? Entourage Email Address in message contents
Re: Suggestions? Entourage Email Address in message contents
- Subject: Re: Suggestions? Entourage Email Address in message contents
- From: John Delacour <email@hidden>
- Date: Sun, 27 Jul 2003 20:54:25 +0100
- Mac-eudora-version: 6.0a28
At 3:06 pm -0400 27/7/03, Jason Bourque wrote:
Hello,
Any suggestion on how to find the email addresses in the body of an
entourage email?
I tried email addresses of contents of message 2 but no luck.
Luck indeed!
tell application "Outlook Express"
set my text item delimiters to space
set ls to {}
set _items to text items of (get content in front window)
set my text item delimiters to ""
repeat with i in _items
set i to contents of i
if i contains "@" then set end of ls to i
end repeat
end tell
ls
--JD
.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.