vote up 0 vote down star

I'm trying to send email to Active Directory distribution groups.

I know you can send mail using something like:

 mail.From = new MailAddress("steveb@microsoft.com");
 mail.To.Add("billg@microsoft.com");

 //set the content
 mail.Subject = "This is an email";
 mail.Body = "this is a sample body with html in it.";
 mail.IsBodyHtml = true;

 //send the message
 SmtpClient smtp = new SmtpClient("127.0.0.1");
 // i seem to need this too....
 smtp.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;
 smtp.Send(mail);

But when I try to stick in a (valid) AD group (eg "My Test Group") in the To field, it kicks it out because it is not a valid email address.

I'm sure this is really straightforward, but I seem to be stuck...

Thanks

flag

2 Answers

vote up 1 vote down check

You distribution group has a mail address, that's what you need to add in the 'to' parameter.

link|flag
I suspected this might be the case, now if only I could find it :D – DrG Nov 20 '08 at 11:29
ARGH my group isn't a Distribution Group... that's why it was being stupid. – DrG Nov 20 '08 at 11:35
Correct, you either have to use distribution group or email enabled security group. – Nico Nov 20 '08 at 11:38
vote up 0 vote down

For the record, Nico is 100% correct, my sysadmin guys created a test group for me but they created a Global User Group and not a Distribution Group as requested.

They claimed they were testing me :D

In fact it cost me 2 hours of my life.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.