I'm using Mandrill API to search for sent emails.
Everything works nice with this query:
{
"key": "mandrill_api_key",
"query": "subject:Announcement"
}
But this one does not work:
{
"key": "mandrill_api_key",
"query": "subject:Announcement:Customer has rejected ABC"
}
Because the query contains an additional colon. I tried to escape it by adding a \
or a \\
before the second one but does not help!
Thank you!