I have a Workflow which creates a Note on Lead, but the Assigned User does NOT get notified on EspoCRM about the new post.
Workflow Target: Lead
Action: Create Record
Entity: Note
Fields:
EspoCRM Version: 5.8.3
Expected Behavior: Assigned user of the Lead gets a new notification on EspoCRM.
Actual Behavior: Assigned User of the Lead does NOT get a notification.
is this by design or a bug?
Workflow Target: Lead
Action: Create Record
Entity: Note
Fields:
Code:
type = 'Post'; parentType = 'Lead'; parentId = targetEntity\attribute('id'); $question = 'Any news?'; post = string\concatenate('@', targetEntity\attribute('assignedUser.userName'), ' ', $question);
Expected Behavior: Assigned user of the Lead gets a new notification on EspoCRM.
Actual Behavior: Assigned User of the Lead does NOT get a notification.
is this by design or a bug?
Comment