This is such a great post. I have been stuggling with this problem since day one. My question is that I can't figure out how to make this work with my database. Here is what I've come up with, but I get errors.
set toAddr to cell "HO EMAIL Add LIST" of current record
set theSubject to cell "PO email subject" of current record
set theContent to cell "PO email Message" of current record
tell application "Microsoft Outlook"
set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent}
the theMessage
make new to recipient at theMessage with properties {email address:{address:toAddr}}
open theMessage
end tell
My fields that I pull the data from are the ones in " " 's. What am I doing wrong?
Thanks