imap Questions

2

Solved

I'm trying to learn how to use the MailKit library but I am struggling to retrieve attachments. So far my code will open a mailbox, go through each message and store data such as sender, subject, b...
Alger asked 27/6, 2014 at 15:28

4

Solved

You can access gmail either using the web interface, Google's Android client or using IMAP. As far as I can tell, the web interface and the Android app uses a completely different protocol than IMA...
Fritter asked 31/8, 2013 at 22:37

3

Solved

I'm looking for a way to check the number of unread emails on an email account. Any tips? EDIT: As described in the tags, for C#. As I learned IMAP is the way to go and I confirmed all email accou...
Periodicity asked 24/10, 2010 at 2:5

2

Thunderbird allows to flag messages with predefined (or own) Tags, e.g. "To Do", "Later". (Press "1" while reading a msg to see.) These tags are replicated to the IMAP server (I verified that by u...
Newfeld asked 26/9, 2011 at 1:36

2

I'm accessing GMail's IMAP interface through python. I run a command like this: UID SEARCH HEADER Message-ID "[email protected]" That succeeds (returns 1 UID of the matching message...
Vinavinaceous asked 6/3, 2012 at 18:20

4

Solved

I'm trying to use Net::IMAP in Ruby to search all mail sent by me, but I'm having trouble selecting anything other than INBOX. imap.select('INBOX') works fine, but imap.select('Mail/sent-mail')...
Slayton asked 3/3, 2011 at 21:29

2

Solved

I have to develop simple mail client in symfony2 using IMAP. Im wondering what is best way to retrieve messages from server (lets take a gmail as example)? I did something like this: public func...
Lutestring asked 7/2, 2012 at 19:13

2

Solved

I'm testing with the asyncio module, however I need a hint / suggesstion how to fetch large emails in an async way. I have a list with usernames and passwords for the mail accounts. data = [ {'...
Equiponderate asked 30/7, 2014 at 13:32

5

Solved

I am developing a lightweight Gmail client for mobile phones, accessing Gmail by IMAP. I want to send a draft from the Drafts folder, but it has some attachments and I cannot download all of them t...
Northampton asked 26/10, 2009 at 22:4

2

Solved

I am trying to read mail from an Imap Server (Gmail). I would check if there are new mail (unseen) and check it as seen. I wrote this code but imap_setflag_full seems to not work. If I have a ...
Rm asked 20/7, 2011 at 17:9

1

Solved

The documentation for IMAP4.thread() in the imaplib library says The thread command is a variant of search with threading semantics for the results. Returned data contains a space separated list o...
Stafani asked 24/5, 2016 at 20:18

5

Solved

In Gmail, I have a bunch of labeled messages. I'd like to use an IMAP client to get those messages, but I'm not sure what the search incantation is. c = imaplib.IMAP4_SSL('imap.gmail.com') c.list...
Tafoya asked 7/10, 2008 at 15:24

2

I have page with customers and with ajax im loading info on whether they send us email or not. Code looks like this: $hostname = '{imap.gmail.com:993/imap/ssl}INBOX'; $username = 'email'; $passwo...
Anew asked 10/3, 2016 at 14:36

5

Solved

I have using a console app for downloading document from the mail using IMAP Service. I use "S22.Imap" assembly in application for the IMAP. I got the all mails contains attached files in IEnumerab...
Cloutier asked 3/8, 2015 at 12:16

3

Solved

I want to extract only the HTML content from a imap_body result. The imap_body give a verbatim copy of the mail.
Genovera asked 25/8, 2014 at 17:18

1

Gmail IMAP is also moved to Oauth2 authentication. So, we are using same console app for Gmail REST API and Gmail IMAP. My Question : For IMAP and REST API the quota allotted will be shared or each...
Cloistered asked 24/2, 2016 at 10:27

4

Solved

I'm curious to know if there is an easy way to mock an IMAP server (a la the imaplib module) in Python, without doing a lot of work. Is there a pre-existing solution? Ideally I could connect to th...
Stereotypy asked 9/12, 2008 at 2:57

1

currently we are using outlook to create a meeting and send it to email x . Whenever imap mailbox x gets an email it automatically parses and send updated iCal file (with new description) to all pa...
Acculturate asked 9/2, 2016 at 10:4

2

I need to create an app that will extract VAT numbers that our clients send us for verification. They send nothing more with e-mails. That's for purpose of creating extended statistics. What I nee...
Chiastic asked 15/1, 2016 at 11:32

4

Solved

i got a code from here to download gmail inbox: http://davidwalsh.name/gmail-php-imap use these 2 hostnames $hostname = '{imap.gmail.com:993/imap/ssl}INBOX'; {imap.gmail.com:993/imap/ssl/novalida...
Mikamikado asked 24/12, 2010 at 9:15

1

Solved

I am using MailKit to read messages from a gmail account. Works great. But, I want to get the message status as whether its read, unread, important, starred etc. Is this possible with MailKit? I ca...
Ranie asked 8/1, 2016 at 12:11

2

I am trying to create a IMAP service on my website with help of php. It basically has few steps. The main part that I want is that i get a list of folders of gmail account, on the click of a parti...
Cartilage asked 2/9, 2015 at 4:48

3

Are there any PHP IMAP functions which can be used to mark an email as unread? I am checking the mail using some IMAP functions that return the messages as read, but I want to make them unread.
Peri asked 10/10, 2012 at 3:25

1

I have Apache server on Mac OS 10.8. I need module IMAP to be enabled in PHP. I followed this instruction http://blog.xeonxai.com/2009/12/03/160/. I have installed imap.so and link it in php.ini fi...
Lacteal asked 28/2, 2014 at 10:57

1

Solved

Im trying to find a method in mailkit that executes the command "Execute append" in IMAP, in C# i would do it like: MailMessage mg = null; using (ImapClient cl = new ImapClient("imap.gmail.com"))...
Isaak asked 27/10, 2015 at 10:11

© 2022 - 2024 — McMap. All rights reserved.