Re: Prepare an attachment on Eudora
Re: Prepare an attachment on Eudora
- Subject: Re: Prepare an attachment on Eudora
- From: Rob Jorgensen <email@hidden>
- Date: Mon, 4 Jun 2001 17:48:27 -0400
On 6/4/01, Alberto De La Torre commented:
Hi folks,
Can anyone tell me how can I prepare a new mail with Eudora
including a file as attachment for wich I know the path?
I tried something as
set field "X-Attachments" of myNewMessage to alias "HD:Desktop
Folder:Document"
and I only view the path on this field but not drawed as it does
when you do it manually "Command+h"
If you save this script as an application (droplet), and then drop a
file, or files, onto it, it will create a new message in Eudora with
the file(s) attached.
-- Begin Script (Droplet) --
on open theFiles
tell application "Eudora"
set myNewMessage to make new message at end of mailbox "Out"
attach to message myNewMessage documents theFiles
end tell
end open
-- End Script (Droplet) --
Or, the non-droplet version:
-- Begin Script (Not a droplet) --
tell application "Eudora"
set myNewMessage to make new message at end of mailbox "Out"
attach to message myNewMessage documents alias "HD:Desktop Folder:Document"
end tell
-- End Script (Not a droplet) --
Later,
Rob Jorgensen
Ohio, USA