Entourage > Filemaker
Entourage > Filemaker
- Subject: Entourage > Filemaker
- From: Jacco Rens <email@hidden>
- Date: Tue, 19 Dec 2000 21:31:32 +0100
- Readsource: 678899999
Hi all,
As my inbox gets to crowded with messages these days, I thougt to export
them to filemaker for better search options. So I looked on the web to see
if there where some easy solutions to do this....nope
So:
on run
tell application "Microsoft Entourage"
set ThisList to selection
repeat with This_Msg in ThisList
set message_Subject to subject of This_Msg
set message_Body to content of This_Msg
set message_Address to sender of This_Msg
set message_Sender to (display name of senderAddress)
tell me to write_record()
end repeat
end tell
end run
on write_record()
tell application "FileMaker Pro"
create record at end of database "Applescripts email archive" with
data ,
{message_Subject, message_Body, message_Address}
end tell
end write_record
Seemed a good starting point, but it gives me errors on the "message_subject
is not defined" hmm I thought I told it to set itself right?
This is realy a chicken and egg story, how can I search for the right syntax
if it's not in my filemaker database :-)
All input welcome,
--
Best,
Jacco
Netherlands