Re: Attaching Outlook Express through FileMaker Pro
Re: Attaching Outlook Express through FileMaker Pro
- Subject: Re: Attaching Outlook Express through FileMaker Pro
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 17 Oct 2002 19:35:31 -0700
On 10/17/02 6:09 PM, "Daniel Rautmann" <email@hidden> wrote:
>
I want to enable the user to attach a file to a
>
scripted email referencing current and related fields
>
from my database.
>
How can this be done?
i don't understand what "referencing current and related fields
from my database. " means.
the way you attach a file is:
set theFile to alias "HD:Folder:File Name"
--or set theFile to choose file wit prompt "Attach which file?"
tell application "Outlook Express"
set theMsg to item 1 of (get current messages) --the selected message
(* or: save window 1
set theMsg to displayed message of window 1 *)
make new attachment at theMsg with properties {file:theFile}
--send theMsg -- or whatever
end tell
--
Paul Berkowitz
_______________________________________________
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.