VSTO Outlook add in. Get moderator accounts of moderated Exchange distribution list -
vsto outlook addin question.
i got moderated exchange distribution list , need know members of list moderators.
know if list moderated use pidtagaddressbookmoderationenabled mapi property(it works):
var ismoderated = mapihelper.getproperty(addressentry, mapiproperty.pidtagaddressbookmoderationenabled);
i have members of list outlook.recipient
class members. tried far, @ least information :
foreach (outlook.recipient recipient in mailitem.recipients) { var try1 = mapihelper.getproperty(recipient, mapiproperty.pidtagaddressbookauthorizedsenders); var try2 = mapihelper.getproperty(recipient, mapiproperty.pidtagaddressbookdistributionlistmembersubmitaccepted); }
both try1 , try2 null
when recipient moderator account. did not find relevant finding moderation accounts in mapi properties. there other way, did miss something?
thanks!
Comments
Post a Comment