Hi everyone!
It's been two weeks I'm working on a workflow to create a case on email and I would like the case to have the contact from the email sender address if it exists.
Target entity => Email
Trigger => After save (but I tried after create)
Condition => isBeingImported && entity\isNew()
Action => Create entity case
I tried with fields Contact and Contacts to have sentBy.contact and I tried with formula with contactId=targetEntity\attribute('sentBy.contactId '),
contactsIds=list(targetEntity\attribute('sentBy.co ntactId')),
entity\addLinkMultipleId(contacts, targetEntity\attribute('sentBy.contactId'))
I tried with attributeFetched and also with variables but it seems that the sentBy field from the email is empty.
I would be very gratefull if somebody could help me!
Charles
It's been two weeks I'm working on a workflow to create a case on email and I would like the case to have the contact from the email sender address if it exists.
Target entity => Email
Trigger => After save (but I tried after create)
Condition => isBeingImported && entity\isNew()
Action => Create entity case
I tried with fields Contact and Contacts to have sentBy.contact and I tried with formula with contactId=targetEntity\attribute('sentBy.contactId '),
contactsIds=list(targetEntity\attribute('sentBy.co ntactId')),
entity\addLinkMultipleId(contacts, targetEntity\attribute('sentBy.contactId'))
I tried with attributeFetched and also with variables but it seems that the sentBy field from the email is empty.
I would be very gratefull if somebody could help me!
Charles
Comment