Re: Filemaker Pro 6 to Mail.app
Re: Filemaker Pro 6 to Mail.app
- Subject: Re: Filemaker Pro 6 to Mail.app
- From: John Haley <email@hidden>
- Date: Wed, 21 Aug 2002 09:48:47 -0500
Why wouldn't you just use the "Send Mail" step from FileMaker's
ScriptMaker (Under Miscellaneous). It will use Mail.app if that is your
default mail application (Set in the Internet preferences of system
preferences)
On Wednesday, August 21, 2002, at 08:24 AM, email@hidden wrote:
Hi everyone !
A simple question (from a newbie), I would like to export my contacts
name, first name, job description and email to Apple Mail.app in order
to send some emails.
I have a script which exports from FM but how do I make a new mail in
Mail.app with Apple Script (and use the informations from FM) ?
tell application "FileMaker Pro"
set strURL to cell "email" of current record
set strFNAME to cell "fname" of current record
set strLNAME to cell "lname" of current record
set strSUBJ to cell "Job Description" of current record
set strMessage to cell "Message" of current record
set strMAILTO to {strFNAME & " " & strLNAME & "<" & strURL & ">"}
end tell
tell application "Mail"
?????????????????
end tell
Thanks !
Lolo
_______________________________________________
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.
_______________________________________________
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.