Re: Entourage drop box to send files
Re: Entourage drop box to send files
- Subject: Re: Entourage drop box to send files
- From: julifos <email@hidden>
- Date: Wed, 26 Nov 2003 11:07:03 +0100
>
I am looking for an Entourage drop box script to send files ...?
Hmmm... I don't know!
>
So all files dragged into a folder get sent as an attachment to one email
>
address with the subject and body produced from the name of the file?
--> untested code. you may add error trapping and blah
on adding folder items to thisFolder after receiving addedItems
repeat with i in addedItems
set iName to name of (info for i)
tell application "Microsoft Entourage"
make new outgoing message at out box folder with properties
{subject:iName, recipient:"email@hidden", attachment:i}
send result
end tell
end repeat
end adding folder items to
jj
_______________________________________________
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.