making pop account on mail server from dotnet

  • Thread starter Thread starter MailYouLike
  • Start date Start date
M

MailYouLike

Hi !

i need some help and advice
i am using asp.net to make a email application it is complete but just one
thing ,
i want to create a pop account at the mail server from my scripts is
that possilbe??? by soap or some thing else ?

Please let me know and if it is possilbe can you direct me toward right
direction

Thanks
Suhail kaleem
 
MailYouLike said:
i need some help and advice
i am using asp.net to make a email application it is complete but just one
thing ,
i want to create a pop account at the mail server from my scripts is
that possilbe??? by soap or some thing else ?

Please let me know and if it is possilbe can you direct me toward right
direction

POP3 does not support creation of mail boxes. Each mail server has its own
way to do this, and most do not support a remote API for doing such.
 
This depends on the mailserver. Some mail servers allow you to store the
user information in an SQL database. If this is the case you can use
database objects to create/manage user accounts. Some servers use the
registry, if this is the case you can use the registry objects to create the
needed keys. Others use the file system. Its best to contact the mail
server developer and see what they recommend.

Bill
 
Back
Top