I have added emails to my contacts but I do not understand how I can find contacts by email. If I use Contacts app on my iPad I can type an email in the search field and it will find the contact it belongs to. What search method should I implement to enable this in my app? Thank you for your help!
Related
i have a problem how to get label email (promotions, updates, forums etc) with Gmail API with low cost computational.
my app used IMAP-idle for getting a new email.
a was search and get that IMAP not support label (promotions, update etc)
the other way is using Gmail API
i know i can get a list of email id by label
but that too much computational
'new id from IMAP -> search that id in every list of label (4 label)->get the label'
it's that possible to get the label of the message with one call?
thanks
In the gmail web app you can search for lables label:friends in the Gmail api you can also search for messages
GET https://www.googleapis.com/gmail/v1/users/me/messages?q="label:friends"
the message.list method will then return all the messages within that label. If you have the message id which i am not sure is the same from imap to the gmail api you then you can do a message.get which will return the label as well
i am trying to add an attendee to a existing event using the google calendar api, i am using php, the problem is all existing attendees get an email notification of the updated event, any idea how to send the notification to the new attendee only?
This is possible directly in gmail like this:
enter image description here
Any help is appreciated
Use Patch, instead of update:
https://developers.google.com/google-apps/calendar/v3/reference/events/patch
How do I find the list of all people who clicked on a specific campaign through Mailchimp API v3?
I think Email Activity is what you are looking for. the emails field contains all emails that opened the campain.
I made the following call to the Contacts API
https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=<<access_token>>&max-results=5000&v=3.0
It return a list of all my contact gmail contacts. I want only the Contact that I added into book.
Thanks in advance.
The contacts that you add to your address book manually go into the "My Contacts" group. This group is marked with <gContact:systemGroup id="Contacts"/> in the contact groups feed. You can retrieve the contacts within a group by adding the query parameter group={group id} to your contacts feed query, where {group id} is the ID of the group.
i have no idea of how to access the contact list of the windows mobile programmatically to use the email addresses.
i want to show the the email of contact list only and when user selects one of them email value is retrieved in a string .
please help me.
regards,
Madhup
From the windows mobile SDK, you can reference in:
Microsoft.WindowsMobile.PocketOutlook
Then in your code, add in
using Microsoft.WindowsMobile.PocketOutlook;
Then you can use that to get contacts using ContactCollection