"Gene Wirchenko" <genew@[EMAIL PROTECTED]
> wrote in message
news:294ki3hj7p48ciuqjkuqpitiegib85u92l@[EMAIL PROTECTED]
>>I don't understand your point number 1. What do you mean it "complains"?
>>I've done that with no particular problems.
>
> The complaint is a message marked as from the System
> Administrator (no E-mail address).
Then you are going through Exchange? I haven't done that.
> So how do you do it?
Basically, it's
DEFINE olMailItem 0
LOCAL oOutlook, oMail
oOutlook = CREATEOBJECT("outlook.application")
oMail = oOutlook.createitem(olMailItem)
oMail.to = "joe@[EMAIL PROTECTED]
"
oMail.subject = "Hello Joe"
oMail.htmlbody = "<HTML>This is the body of the email.</HTML>"
* or I think this will work also: oMail.body = "This is the body of the
email."
oMail.display
* This allows the user to see the email, then click Send. Newer versions
of
Outlook won't allow
* programmatic sending because of security concerns, but it might work
with
Outlook 97.
But like I said, I haven't had to go through Exchange, so I don't know how
that would affect the problem.
>>I don't understand number 2 either. Did the email go out or didn't it?
Are
>>you trying to receive as well?
>
> It went out. I can see it with my ISP's Web interface.
>
> Trying to receive it into Outlook fails. Outlook apparently
> receives it -- it goes through the motions -- but the post is not
> picked up and is still at my ISP.
Now I'm really confused.
Oh, you mean you can receive it with web mail, but not with Outlook?
That's a different issue then. Can you send out email from Outlook by
hand,
then receive it using Outlook? If so, find out what's different between
emails you created by hand and those created programmatically. If not,
maybe
your company is on its own spam list, or has something else blocking
incoming mail.


|