I am building an app that needs to dynamically/programatically know of and use different SMTP settings when sending email.
I\'m used to using the system.net/mailSet
It seems that you can initialize using different SMTP strings.
SmtpClient client = new SmtpClient(server);
http://msdn.microsoft.com/en-us/library/k0y6s613.aspx
I hope that is what you are looking for.