OT - Auto e-mail

I am not sure if it was my post or not, but the auto e-mail program I
wrote was discussed on the group. However, I never posted the code I
wrote. The outlook object model is real simple and it only takes a
couple of line of code to send a message.

Dim OlApp As New Outlook.Application
Dim ObjNewMail As Outlook.MailItem
Dim AceContactEmail As String
Set OlApp = New Outlook.Application
Set ObjNewMail = OlApp.CreateItem(olMailItem)
ObjNewMail.Recipients.Add strRecip
ObjNewMail.HTMLBody = Or ObjNewMail.body =
ObjNewMail.send

The MSDN has examples.
--- In vantage@y..., "hawkkt" <ktrapp@h...> wrote:
> This messages was posted to the group on 5/31/02.
>
> "...You could probably also utilize the auto-email solution that
was
> posted onthe list recently...."
>
> Does anyone have/know where this code was posted? I tried looking
in
> the archive, but could not find it. I am looking to send e-mails
and
> set appointments to a public calendar (in the background) in a VB
> program I am writing. Utilizing Outlook and Exchange.
>
> TIA
>
>
>
> Sincerely,
> Kim A. Trapp
> Hawk Technology Ltd
> 309-787-6200 ext 221
> ktrapp@h...
> www.hawktechnology.com
This messages was posted to the group on 5/31/02.

"...You could probably also utilize the auto-email solution that was
posted onthe list recently...."

Does anyone have/know where this code was posted? I tried looking in
the archive, but could not find it. I am looking to send e-mails and
set appointments to a public calendar (in the background) in a VB
program I am writing. Utilizing Outlook and Exchange.

TIA



Sincerely,
Kim A. Trapp
Hawk Technology Ltd
309-787-6200 ext 221
ktrapp@...
www.hawktechnology.com