Emails in History side panel lack any sign of their direction. It's unclear is email incoming or outgoing, so it would be nice to have at least From field here.
I tried to dig that issue, but didn't get anything useful.
I found client/modules/crm/src/views/record/panels/history.js with
I could remove some field and it removes field from the side panel.
However, I can't figure how to add From field of e-mail.
I could add 'parentType' and some other fields, and they displayed in panel.
Database records have column from_string, but adding 'fromString' does not work.
Administration - Entity Manager - Field Manager shows 'fromAddress', 'fromEmailAddress', 'fromName' and 'fromString' - none of them works.
Does anybody have a solution?
I tried to dig that issue, but didn't get anything useful.
I found client/modules/crm/src/views/record/panels/history.js with
Code:
listLayout: {
'Email': {
rows: [
[
{name: 'ico', view: 'crm:views/fields/ico'},
{name: 'name', link: true}
],
[
{name: 'status'},
{name: 'dateSent'},
{name: 'hasAttachment', view: 'views/email/fields/has-attachment'}
]
]
},
},
However, I can't figure how to add From field of e-mail.
I could add 'parentType' and some other fields, and they displayed in panel.
Database records have column from_string, but adding 'fromString' does not work.
Administration - Entity Manager - Field Manager shows 'fromAddress', 'fromEmailAddress', 'fromName' and 'fromString' - none of them works.
Does anybody have a solution?

Comment