View Poll Results: Would you use this SMTP server class?

Voters
41. You may not vote on this poll
  • I am very interested and look forward to seeing the end result

    17 41.46%
  • I would probably give it a go when it is complete

    14 34.15%
  • I am not really interested myself but it sounds like a good idea

    6 14.63%
  • I think it would be useless

    4 9.76%
Results 1 to 40 of 115

Thread: Would you use my .NET SMTP server class?

Threaded View

  1. #1

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Would you use my .NET SMTP server class?

    I get the feeling that this probably isnt the best place to post this, but the forum says "drop in here to discuss anything related to VB.NET" and this is definitely only related to VB.NET and not VB6 or anything. Anyway, if its in the wrong place then feel free to move it mods/admins

    As most of you will know, an SMTP server is a server that can send and receive emails. There are questions on these forums quite often about how to use google's SMTP server or Yahoo's SMTP server for example to send an email and generally it is a bit of a pain having to rely on a free public SMTP server. This is because for one thing you dont know that it will always be there or if the details required to access it will change slightly - plus you are only supposed to use these SMTP servers to send emails from the domain that you are using the SMTP server of. So for example if you use google's server then you should only send emails from your @gmail.com address or whatever.

    So I decided a while ago to try and write my own SMTP server, as a class library so that other people could use it's functionality in their own programs. As you can imagine, this is not a particularly easy task and is taking far longer than I anticipated - whilst I will probably continue to make it just for the learning experience, I am just wondering how many people would actually use something like this? I mean if lots of people tell me that they are interested in it then I'm sure I will spend a lot more time on it, but at the moment its a bit hard to find the enthusiasm when I have loads of other stuff to do and I'm only doing it for myself.

    If you could just fill in the poll attached to this thread to let me know how interested you are in this that would be great

    Also, just to clarify what I am actually making, you would basically be able to just add a reference to my DLL and then do something like this:
    vb Code:
    1. Dim SmtpServer As New SmtpSender
    2. SmtpServer.Send("[email protected]", "[email protected]", "subject here", "body here")
    and that's it, it would send the email (provided you have port 25 open outbound, but you need that to use the standard .NET SmtpClient class anyway so thats nothing special). You dont need to specify an SMTP server or anything, because this is the SMTP server.

    Thanks
    Chris

    EDIT: See post #7 for a better description!
    Last edited by chris128; Nov 4th, 2009 at 09:25 AM.
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


Posting Permissions

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



Click Here to Expand Forum to Full Width