Active Directory 配布グループに電子メールを送信しようとしています。
次のようなものを使用してメールを送信できることを知っています。
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);
しかし、フィールドで (有効な) AD グループ (「My Test Group」など) に固執しようとするとTo
、有効な電子メール アドレスではないため、除外されます。
これは本当に簡単だと思いますが、行き詰まっているようです...
ありがとう