vote up 1 vote down star
2

I've been kicking around this idea for a while and would like to read your thoughts.

I'd like to create a .NET service to send and track email messages.

My rough ideas:

  1. Within various applications, serialize instances of .NET email (System.Net.Mail.MailMessage) objects and put them into a database or file system queue

  2. The mail service/process polls the queue and sends the emails

  3. Enforce subscribe/unsubscribe lists/rules

  4. Track opens, bounces, out-of-office auto-replies, etc.

  5. Report statuses back to the original applications

Does anyone have advice for how I should get started or what issues I may have? Is there off-the-shelf software/service I should look at?

flag

64% accept rate

3 Answers

vote up 0 vote down

Awesome post. I love stuff like this post.

link|flag
vote up 1 vote down

You may find some of the answers to Handling undelivered emails in webapp useful.

link|flag
vote up 3 vote down

You will need to learn everything you can about the SMTP protocol, even if you are using higher level tools that do most of the work for you. In my own experience with processing outbound and inbound emails with .NET, I didn't really "get it" until I learned to telnet to port 25 of an SMTP server and send en email by issuing the commands myself.

If you are sending lots of emails out and you need to monitor NDRs (non-deliverable reports), you will have to set the SMTP envelope sender address to your own server and parse all of those emails when they come in to figure out what happened.

The System.Net email classes don't allow you to set the MAIL FROM in the conversation with the MTA without also setting the From address in the email header to the same thing, so you will need to use a 3rd party library like aspNetEmail if you need those addresses to be different.

ListNanny is another tool that is helpful to parse NDRs, among other functions.

I'm not sure about serializing the MailMessage objects. I think it would be simpler to just store the separate data elements themselves and then instantiate MailMessage objects when you need them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.