Sending an e-mail, how

C

Chad Z. Hower aka Kudzu

Cor said:
I have the same idea, but I was trying if it would go,

(Found nothing on internet, I can start OE and opening the right newsgroup
but not direct a message)

Is there a reason you have to launch the existing one? What about making your
own window and posting to the newserver yourself?


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
 
C

Cor

Hi Kudzu,

Do you have a sample for that , (it is not really important but very
intresting)

Can be in a kind of psuedo source

Cor
 
C

Chad Z. Hower aka Kudzu

Cor said:
Do you have a sample for that , (it is not really important but very
intresting)

Yes. This is using Indy, but Indy is free:
http://www.indyproject.org/indy.html

Im writing this in the newsreader, so it might not be 100% but you get the
idea...

Imports Indy.Sockets.IndyNNTP

Dim LHTTP as new HTTP
Dim LMsg as new Message

with LMsg
From.Address = "(e-mail address removed)"
Subject = "Hello"
Newsgroups.Add("microsoft.public.dotnet.languages.vb")
Body.Text = "This is my message"
end with

LHTTP.Host = "msnews.microsoft.com"
LHTTP.Connect
try
LHTTP.Post(Message)
catch
LHTTP.Disconnect
end try




--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
 
C

Cor

Hi Kadzu,

Thank you very much,

I 'll try it, maybe I can make something with what Herfried can also read
and send better his post.

:))

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top