Results 1 to 5 of 5

Thread: need knowledge regarding SMTP server

  1. #1
    Fanatic Member
    Join Date
    Aug 07
    Posts
    806

    need knowledge regarding SMTP server

    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.

    What we require to achieve this task?

  2. #2
    Angel of Code Niya's Avatar
    Join Date
    Nov 11
    Posts
    3,143

    Re: need knowledge regarding SMTP server

    Hmm...I'm a little confused. Do you guys want to create your own mail server like gmail or hotmail ? Or is there something more ?
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | Create Sortable BindingList(not mine) | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading


    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

  3. #3
    Fanatic Member
    Join Date
    Aug 07
    Posts
    806

    Re: need knowledge regarding SMTP server

    yes own email service like hotmail, gmail and yahoo

  4. #4
    Angel of Code Niya's Avatar
    Join Date
    Nov 11
    Posts
    3,143

    Re: need knowledge regarding SMTP server

    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.
    Last edited by Niya; Sep 15th, 2012 at 07:24 AM.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | Create Sortable BindingList(not mine) | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading


    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

  5. #5
    Fanatic Member
    Join Date
    Aug 07
    Posts
    806

    Re: need knowledge regarding SMTP server

    thank you very much.
    i will check it all

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •