Re: Write eMail with Outlook per Script
Re: Write eMail with Outlook per Script
- Subject: Re: Write eMail with Outlook per Script
- From: Paul Berkowitz <email@hidden>
- Date: Tue, 01 Oct 2002 09:19:27 -0700
On 10/1/02 8:30 AM, "Samuel Nitsche" <email@hidden> wrote:
>
It seems not to work.
>
>
Could you post the whole Script, please? I tried it with tell app "..." tags
>
and without, but I always get an error. (I'm using Outlook)
>
>
My English is not too good, so I maybe missunderstood something....
>
1) This is a script for Outlook Express. It does work there I just checked.
If you have "Microsoft Outlook 2001" on an Exchange Server, then it does not
work, and I don't think you can't do it there. I don't have Exchange Server,
so I can't test it, but the very limited dictionary for Outlook does not
look as if it will send to groups, just to {names with] email address
recipients.
2) In Outlook Express, if you don't specify a location for an outgoing
message, it gets made in the Drafts folder, so that's where you should look
for this message:
tell application "Outlook Express"
set newMsg to make new outgoing message with properties {subject:"Hi",
content:"Bye", recipient:"Test"}
--send newMsg
end tell
[Or you could specify making it 'at out box folder']. Uncomment that last
line if you want to send it (don't do that just yet).
3) If you want to see a message window on the screen (in OE), then don't
make an outgoing message, make a draft window:
tell application "Outlook Express"
make new draft window with properties {subject:"Hi", content:"Bye",
recipient:"Test"}
end tell
--
Paul Berkowitz
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.