会员请求 SPGroup 共享点的电子邮件地址
在 sharepoint 中创建组时,我们有一个选项 “发送会员请求至以下电子邮件地址”
用于向 SPGroup 发送会员请求。
但是我们如何以编程方式设置电子邮件地址
While creating Group in sharepoint we have an option
"Send membership requests to the following e-mail address"
It is used to send membership request to the SPGroup.
But how can we set the e-mail address programmatically
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在尝试在功能激活事件中完成同样的事情。我已经找到了如何创建组以及如何访问对象模型中的这些设置。你可以使用我下面的例子。问题是,尽管调用了 SPGroup.Update(),但我对 SPGroup 的这些布尔属性的更改并未生效。创建的 SPGroup 仍使用默认设置(成员资格请求已关闭)。
I'm trying to accomplish the same thing in a feature activated event. I have found how to create the group and how to access these settings in the object model. You can use my example below. The problem is, my changes to these boolean properties of the SPGroup don't take, despite calling SPGroup.Update(). The SPGroup created still uses the default settings (membership requests are turned off).
如果使用 SP 2013,使用 PowerShell 您可以使用以下代码:
If using SP 2013, using PowerShell you can use the following code: