Aloaha POP3 and NNTP SDK 

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

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

Please note that these packages are included
in our Aloaha SPAM Rejector. If you are using
Aloaha SPAM Rejector you dont need to install
these SDK's.

For further questions please contact pop3sdk@aloaha.com

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

POP3 examples:

Set pop=CreateObject("pop3news.popnews")

pop.username="pop"
pop.password="pop"
pop.remotehost="192.168.0.111"
pop.remoteport="110"

'show amount of mails in popbox
MsgBox pop.getammount
'show header of last mail in mailbox
MsgBox CStr(pop.getheader(CStr(pop.getammount)))
'show mailsource of last mail in mailbox
MsgBox CStr(pop.getmail(CStr(pop.getammount)))
'retrieve mail, convert it to CDO Object and display subject
MsgBox pop.get_cdo(CStr(pop.getammount)).subject

'retrieve all subjects
For i = 1 to pop.getammount
	subject=subject+CStr(i)+": "+ pop.get_cdo(CStr(i)).subject+vbcrlf
Next
MsgBox subject


'release object
Set pop=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.

