Given a list of emails, is there a way to identify similar emails? For example, if a user sends out a personalized marketing email to a list of contacts (1 personalized email for each contact) in a campaign, how can the API reliably identify the list of emails as being the same?
You might say that I could look at the “Subject” field and match emails by that, to which I say that is not a reliable way of doing it.
Is there a way to attribute an email to a campaign or a sequence and figure that out through the API?
Please follow the example below:
[
{
"id": 1,
"subject": "Subject 1",
"headers": null,
"contact_id": 123456,
"sent_to_address": "email1@email.com",
"sent_to_cc_addresses": null,
"sent_to_bcc_addresses": null,
"sent_from_address": "sender@email.com",
"sent_from_reply_address": null,
"sent_date": "2019-03-08T21:12:00.000Z",
"received_date": null,
"opened_date": null,
"clicked_date": null,
"original_provider": "UNKNOWN",
"original_provider_id": null
},
{
"id": 2,
"subject": "Subject 1",
"headers": null,
"contact_id": 654321,
"sent_to_address": "email2@email.com",
"sent_to_cc_addresses": null,
"sent_to_bcc_addresses": null,
"sent_from_address": "sender@email.com",
"sent_from_reply_address": null,
"sent_date": "2019-03-08T21:31:00.000Z",
"received_date": null,
"opened_date": null,
"clicked_date": null,
"original_provider": "UNKNOWN",
"original_provider_id": null
}
]