Microsoft CRM 4.0 工作流程:如何通过电子邮件发送相关实体列表?

发布于 2024-07-14 12:06:22 字数 358 浏览 5 评论 0 原文

我正在 Microsoft CRM 4.0 中为实体 E1 构建工作流程。 在这个wf中,我必须发送一封电子邮件。 在电子邮件中,我必须打印 E1 中符合特定条件的所有实体

例如,如果有以下邮件就很好了:

嗨卡尔,这是您昨天创建的帐户列表:

  • 帐户1,信息
  • 帐户2,信息
  • 帐户3,信息

我可以做吗? 看来我不能啊!

I'm building a workflow in Microsoft CRM 4.0 for an Entity E1. In this wf, I have to send an email. In the email, I have to print all entities of E1 that match certain conditions.

For example, it would be great the following mail:

Hi Carl, this is your list of account created until yesterday:

  • account1, info
  • account2, info
  • account3, info

Ho can I do it? It seems I can't!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撕心裂肺的伤痛 2024-07-21 12:06:22

您必须编写自定义工作流程程序集才能创建此类电子邮件。

You will have to code a custom workflow assembly to create this type of email.

哽咽笑 2024-07-21 12:06:22

根据您需要启动此操作的时间,实际上有一种复杂的方法来处理使用本机工作流程。 如果当父实体上的字段更改为某个值时将启动它,则执行此操作。

  1. 在子实体上创建一个在创建时运行的工作流,并且是子工作流。 第一步应该是等待父实体上的相关字段具有正确的值。
  2. 然后在等待状态下,发送您的电子邮件
  3. 最后再次启动该工作流程作为子工作流程
  4. 然后结束当前工作流程。

如果您不害怕等待工作流程,您还可以进行一些巧妙的技巧

Depending on when you need this kicked off there is actually a convoluted way to handle using native workflows. If it will be kicked off when a field on the parent entity changes to a certain value then do this.

  1. On the child entity create a workflow that runs on create and is a child workflow. The first step should be to wait until the relevant field on the parent entity has the correct value.
    1. Then under the wait condition, send your email
    2. Finally start the workflow again as a child workflow
    3. Then end the current workflow.

You can do also sorts of neat hacks if you aren't afraid of waiting workflows

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文