Hello,
I have the batch email working...after a fashion. I can batch emails as long as I don't incorporate any data into it.
// Create three separate email messages.
EmailMessage message1 = new EmailMessage(ExService);
message1.Subject = "this is my subject";
message1.Body = customerRequest;
message1.ToRecipients.Add(primaryTo); // Note that we are only sending to the primaryTo address for the first batch, not every one
// Loop through the members affected
foreach (var email in getList){
sCount++;
if (sCount <= 50) {
// Add each member to this email
message1.BccRecipients.Add(email.Email); //gather the emails in each batch.
}
}
Does anyone know how I could do this?
Thanks


