Email from FM using Outlook
Email from FM using Outlook
- Subject: Email from FM using Outlook
- From: Anders Monsen <email@hidden>
- Date: Sat, 06 Jan 2001 16:16:51 -0600
I'm setting up a script to run through records in FM and email these via
Outlook. The script as such works, but I want to send this from a specific
POP account set up just to handle outgoing email. I am not sure where to
insert this command and the proper syntax. Any ideas?
This is what I have so far:
set mailTo to cell "MailTo" of current record of database "Email"
set theSubject to cell "MailSubject" of current record of database
"Email"
set theContent to cell "MailMessage" of current record of database
"Email"
tell application "Outlook Express"
activate
--send the email from POP Account {Outgoing Email account}?
make new outgoing message at folder "Outbox" with properties ,
{content:theContent, subject:theSubject, recipient:{address:mailTo,
recipient type:to recipient}}
end tell
Thanks,
Anders