asp.net smtp mail queue

asp.net, email, queue, smtp

Solution

You can submit your messages to an IIS SMTP relay server via the Pickup Folder. This is the cheapest, and probably best, outgoing mail queue for ASP.NET.

Otherwise, you'll just need to connect to your SMTP relay server and configure its queue in whatever manner meets your business needs.

Problem

does anyone know of a module thats available for asp.net that uses a queue to send email to an smtp server? the queue being the operative word here.. we need a proper fallback mechanism for storing any messages that can't be sent so that the send can be re-attempted later thanks

Original source