Aloaha POP3 and NNTP SDK 

Download updated version of this file on:
http://www.aloaha.com/download/nntpsdk.txt

Download updated version of SDK from:
http://www.aloaha.com/download/nntpsdk.zip

For further questions please contact nntpsdk@aloaha.com

Please note that this SDK is only free to use for non commercial
Products.


NNTP examples:

'create object
Set news=CreateObject("pop3news.popnews")

'Set server and port
news.remotehost="news.microsoft.com"
news.remoteport="119"

'choose newsgroup
dummy=news.enter_group("microsoft.public.exchange2000.general")

'display textbody of newest posting
MsgBox news.get_article_as_CDO(CStr(news.lastnews)).subject+vbcrlf+vbcrlf+news.get_article_as_CDO(news.lastnews).textbody

'display messageheader of newest posting
MsgBox news.get_newsheader(CStr(news.lastnews))

'display bodysource of newest posting
MsgBox news.get_newsbody(CStr(news.lastnews))

'display messagesource of newest posting
MsgBox news.get_article(CStr(news.lastnews))

Set news=nothing


There are much more public declared Interfaces.
Your workbench will show them to you. If you
use VB6 for example just press F2 after you referenced
this object.

If you need further help PLEASE DONT HESITATE to
contact me via email or our FAQ Page.

