CRM 4.0 - 如何将属性添加到“收件人”中字段(电子邮件工作流程)
我将 Microsoft CRM 4.0 与自定义实体结合使用。我正在尝试动态发送电子邮件到不同的电子邮件地址。我已创建工作流程和电子邮件模板,但无法填充电子邮件模板中的“收件人”字段来添加我的属性之一。我的属性没有出现在表单助手上。我的实体中有一个字段为 nvarchar 且格式为“电子邮件”。
有什么想法吗?
I'm using Microsoft CRM 4.0 with a custom entity. I am trying to send emails dynamically to different email addresses. I have created the workflow and email template, but I can't populate the 'To' field in the email template to add one of my attributes. My attributes do not appear on the Form assistant. I have a field in my entity which is of nvarchar and format of 'email'.
Any ideas??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能(默认情况下)使用字符串属性或自定义实体作为 CRM 4.0 中的电子邮件目标。只能使用某些类型的内置实体(通常是联系人、系统用户或队列)。
我们最终使用队列作为存储电子邮件地址的机制,我们不希望将其与特定用户或客户关联(例如用于通知的共享团队电子邮件)。如果你也将它们用于其他用途,但效果很好,那就有点难看了。
You cannot (by default) use a string attribute or a custom entity as an email target in CRM 4.0. Only certain types of built in entities can be used (normally contact, systemuser or queue).
We ended up using queues as a mechanism of storing email addresses which we did not want associated with a specific user or customer (such as shared team emails for notifications). It's a bit ugly if you also use them for anything else but works fine.