one of my friend built a website that can offer website users to use our server to send email to their business peoples. we want to provide users following information
a sign up form to create an id in our site and use registered username and password in the information below.
SMTP SERVER : ourserver.smtp.com
SMTP PORT : 25
Username : registeredUsername
Password : registeredPassword
and user enter these information into their email sending software to send emails from our server.
C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter
There's just no reason to use garbage like InputBox. -jmcilhinney
Then you need to know how to implement the SMTP protocol.
Here is a page where a simple SMTP server is partially implemented in VB.Net. There is also a link there that leads to a document that describes the SMTP protocol, so you should be able to do a complete implementation yourself.
EDIT
While the SMTP docs can tell you everything you need to know to create one, I'd advise that you first look for one that's already implemented. Perhaps an open source implementation that's made to be used by other developers. The reason I suggest this is because creating a complete implementation may in itself be a full time project by itself not something you can just throw together in a couple of days. If you're willing to put in the time then by all means go for it, if not, look up one.
C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter
There's just no reason to use garbage like InputBox. -jmcilhinney