Posted on: 7/1/2014 11:59:52 AM | Views : 354

Friends,
I am looking for your suggestion for the best approach, I would like to send 25000 Email So which approach is best.
MultiThreading OR Asynchronous EMail Sending.
I have explored few using below code and i am still confused
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Diagnostics; using System.Net.Mail; using System.ComponentModel; using System.Runtime.Remoting.Messaging; namespace MultiThreadingAsync { class Program { static void Main(string[] args) { List<Recipient> obj = new List<Recipient>() { new Recipient { FirstName = "Name 1" ,LastName = "Last 1" , EmailAddress = "EMTTVD01@1.com" }, new Recipient { FirstName = "Name 2" ,LastName = "Last 2" , EmailAddress = "EMTTVD ...

Go to the complete details ...