Apple Script for Multiple attachments to Outlook Express from FileMaker
Apple Script for Multiple attachments to Outlook Express from FileMaker
- Subject: Apple Script for Multiple attachments to Outlook Express from FileMaker
- From: Daniel Rautmann <email@hidden>
- Date: Tue, 22 Oct 2002 17:02:28 -0700 (PDT)
Hi All,
Thanks to Bill White and a few modifications, the
script below is what I am using to allow a user
attached file to an email from FileMaker data to
Outlook. However, I now want to be able to add more
than one attachment. I tried a few things (&, {},
etc.) with no success. Any ideas?
Thanks,
Daniel
THE SCRIPT::
set theAttachment to cell "g_filepath"
set emailAddress to cell "email" of current record
set theSubject to cell "subject" of current record &
"- Radio Manual"
set theContent to cell "emailbody" of current record
tell application "Outlook Express"
make new outgoing message at folder"Outbox" with
properties {subject: theSubject, content:theContent,
recipient:emailAddress, attachment:theAttachment}
end tell
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/
_______________________________________________
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.