SharePoint VS 工作流通过电子邮件发送到 SharePoint 组
我有一个在 VS 工作流程中发送电子邮件的代码活动。 它只是将“收件人”属性设置为网站集中的 SharePoint 组的名称。 但是,只有该组中的第一个人会收到电子邮件。
有什么想法为什么会发生这种情况吗?
谢谢
I have a code activity that sends an email in a VS workflow. It simply sets the 'To' property to the name of a SharePoint group in the site collection. However, only the 1st person in the group gets emailed.
Any ideas why this is happening?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的群组中是否包含除用户之外的其他内容(例如:通讯组列表、广告组)?
如果这仍然是一个问题,并且您需要能够发送到 SharePoint 组,我建议编写一个自定义工作流操作,该操作将收集指定组中所有用户的电子邮件(您可以在网上找到许多关于如何进行自定义操作)。
Does your group contain anything other than just users (ex: distribution lists, ad groups)?
If this is still a problem and you need to be able to send to a SharePoint group, I would recommend writing a custom workflow Action that would gather the emails of all the users in a specified group (you can find many tutorials online on how to make a custom action).
事实证明,它甚至没有向第一个用户发送电子邮件。 我决定以编程方式提取用户电子邮件。 工作正常。
Turned out it was not even emailing the first user. I decided to extract the user emails programatically instead. Works fine.