I have an application that sends 500K+ transactional emails a month. Some are more important than others. I need the important emails to go out using a high-delivery email solution with tracking (read more expensive) and the less important emails using an ordinary mail server.
Is there a way setup multiple smtp sections in mailSettings pointing to the two mail servers and let the code choose which mail server they want to do the sending with.
There is a way to do it using the "location" and have the pages handle sending the email pick the smtp server based on the path. However I have a separate background process forked that is doing this asynchronously and this will not help much.
Thanks!