Re: best way to send an e-mail with Applescript
Re: best way to send an e-mail with Applescript
- Subject: Re: best way to send an e-mail with Applescript
- From: Ian Mantripp <email@hidden>
- Date: Thu, 19 Apr 2001 01:07:24 +0200
on 18/04/01 7:49 PM, Jacob Roebuck wrote:
>
I am trying to get applescript to send an e-mail with Outlook Express, with
>
no luck.
>
>
Does anyone have a example of this? Is there a better solution? Can
>
applescript send email directly?
You'll need to take a look at the OE dictionary but something like this
should so it :
set theSubject to "This is made with AppleScript"
set theContent to "This message was made using an AppleScript, blah blah"
tell application "Outlook Express"
make new outgoing message with properties {subject:theSubject,
content:theContent}
end tell
Ian