I was using the Send Email task but it has a limitation of 255 characters in To List/Recipient List. Then i switched to Script Task where in i am using:
MailMessage mail = new MailMessage();
mail.To.Add(Dts.Variables["Myvariable"].Value.ToString())
Now i am storing the list of mail ids separated by a comma in MyVariable But still it have a same limitation of sending email to the List which does not exceed in 255 Characters.
Does this is the case for both the options or i am missing something?