RE: Best way to send email with AS
RE: Best way to send email with AS
- Subject: RE: Best way to send email with AS
- From: "Wootten, Greg" <email@hidden>
- Date: Thu, 19 Apr 2001 14:20:36 -0500
I wrote this one and it works fine, haven't figured out how to send it w/o
actually pushing the send button
tell application "Microsoft Outlook"
activate
ignoring application responses
CreateMail Recipients recipList CC_Recipients ccList Body bodyText
Subject subjectText with Display
end ignoring
end tell
italics are all variables
Woo