- Send bulk email using c# multithreading concept [closed]
- for( i=0; i<total_thread_no; i++)
- {
- Thread th=new Thread(email_sending_function);
- th.Start();
- }
- for( i=0; i<total_thread_no; i++)
- {
- Thread th=new Thread( ()=> email_sending_function(parameter1,parameter2,...)
- th.Start();
- }