I am using InboxSdk and I wanted to know if there is any way to differentiate between different types of email recipients, i.e., to, Cc, Bcc
Currently using both methods of messageView getRecipientEmailAddresses() and getRecipientsFull(), I am only getting arrays of the recipients, which are unfiltered.
getRecipientEmailAddresses()
[
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]"
]
getRecipientsFull()
[
{
"emailAddress": "[email protected]"
},
{
"emailAddress": "[email protected]"
},
{
"emailAddress": "[email protected]"
},
{
"emailAddress": "[email protected]"
},
{
"emailAddress": "[email protected]"
},
{
"emailAddress": "[email protected]"
}
]