From email

how can I add a column which takes the email that it was sent from. Because I have too many emails connected and I want to know from which one it took from
No description
9 Replies
mide
mide2mo ago
You can add a new column to capture the “From” address so you can see which email account sent it. I can help you set this up depending on the platform you’re using—are you working in Gmail, Outlook, or a CRM/marketing tool?
Banians | <>
Banians | <>OP2mo ago
Thank you so much for replying I am using 5 outlook accounts
mide
mide2mo ago
Since you’re using multiple Outlook accounts, the best way is to add a column that automatically shows which account each email was sent from. I can set this up for you. If you’d like, we can connect I can walk you through it and handle the setup for you directly.
Banians | <>
Banians | <>OP2mo ago
Yes perfect how can we connect
mide
mide2mo ago
Send me a request @Banians
Banians | <>
Banians | <>OP2mo ago
Done Can someone else HELP me here becasue he is not replying
ɃØĦɆᵾS
ɃØĦɆᵾS2mo ago
Currently you can't do it as emails are strictly bound to People records and attached to them, the only workaround is to use API to search for them
ɃØĦɆᵾS
ɃØĦɆᵾS2mo ago
It'll be way easier to do it once this issue is done in the beginning of next year https://github.com/twentyhq/core-team-issues/issues/217
GitHub
📩 Mail as standard Object · Issue #217 · twentyhq/core-team-is...
About Surface the email object in a standard object.
ɃØĦɆᵾS
ɃØĦɆᵾS2mo ago
Here's the GraphQL query which you can use to easily get needed info
query MyQuery {
messages {
edges {
node {
subject
text
messageParticipants {
edges {
node {
person {
name {
firstName
lastName
}
}
workspaceMember {
name {
firstName
lastName
}
}
}
}
}
messageChannelMessageAssociations {
edges {
node {
messageChannel {
connectedAccount {
connectionParameters
id
handle
handleAliases
provider
}
}
}
}
}
}
}
}
}
query MyQuery {
messages {
edges {
node {
subject
text
messageParticipants {
edges {
node {
person {
name {
firstName
lastName
}
}
workspaceMember {
name {
firstName
lastName
}
}
}
}
}
messageChannelMessageAssociations {
edges {
node {
messageChannel {
connectedAccount {
connectionParameters
id
handle
handleAliases
provider
}
}
}
}
}
}
}
}
}

Did you find this page helpful?