imap Questions
2
Solved
I want implement a confirmation dialog for sending email read receipts in my application. The application uses IMAP to communicate with the mail server, which is currently restricted to a Microsoft...
Antoniettaantonin asked 19/5, 2014 at 12:23
2
Solved
A bit of context...
Some time ago, I wrote Python a program that deals with email messages, one thing that always comes across is to know whether an email is "multipart" or not.
After a bit of re...
Distinguished asked 1/2, 2018 at 12:35
7
How do I retrieve the email address from an email with imap_open?
If the sender name is known I get the sender name instead of the email address if I use the 'from' parameter.
Code: http://gist.g...
1
Has anyone had this task ??
It should be common.
I need to extract all the email addresses from a specific inbox
accessible through imap. It's for marketing purposes (SMB, mailchimp).
The address...
Nerin asked 11/1, 2018 at 23:40
2
Solved
I'm trying to add incoming email to my web application. It's built on CodeIgniter and PHP, and as far as I can tell I haven't found any CI libraries to do this.
What I'd like to do is have a contr...
Buckshee asked 20/9, 2009 at 7:8
3
I have a python script that has to fetch unseen messages, process it, and mark as seen (or read)
I do this after login in:
typ, data = self.server.imap_server.search(None, '(UNSEEN)')
for num ...
6
Solved
According to developer.yahoo.com/mail/ and IMAP responses:
* OK [CAPABILITY IMAP4rev1 ID MOVE NAMESPACE X-ID-ACLID UIDPLUS LITERAL+ CHILDREN XAPPLEPUSHSERVICE XYMHIGHESTMODSEQ AUTH=PLAIN AUTH=LOGI...
Siddons asked 17/3, 2016 at 10:57
3
Solved
I get the above error message from dovecot, if I try to rename a IMAP folder (with thunderbird)
Renaming not supported across conflicting directory permissions
if I try to rename "foo" to "fooba...
Glenda asked 20/11, 2013 at 9:39
5
So I get emails using imap from gmail and outlook.
Gmail encodes like this =?UTF-8?B?UmU6IM69zq3OvyDOtc68zrHOuc67IG5ldyBlbWFpbA==?=
and outlook encodes like this =?iso-8859-7?B?UmU6IOXr6+ft6er8IHN...
1
I am connecting Office 365 mailbox using java mail API with IMAP protocol.
We have continuous stream of messages to mailbox and reading those through java mail API. Once messages are read, those w...
Lemmueu asked 4/8, 2017 at 9:40
5
Solved
Here is the code I have thus far:
import email, imaplib
user = 'some username'
pwd = 'some password'
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user, pwd)
m.select("[Gmail]/All Mail")
res...
3
Solved
I've been implementing some PHP/IMAP-based email handling functionality lately, and have most everything working great, except for message body decoding (in some circumstances).
I think that, by n...
1
To fetch the particular section of the body of a message with imap_fetchbody(), you have to pass the section parameter which relates to the IMAP part number and is defined as follow in the PHP docu...
3
I have implemented a custom email server and web client. The server is just a REST API (similar to google's gmail API) that uses a 3rd party (sendgrid) for sending and receiving. The emails are sto...
Audet asked 15/4, 2017 at 20:34
1
Solved
I have looked at other examples online, but I am unable to figure out how to download and store ALL the attachments from a MimeMessage object.
I did look into the WriteTo(), but I could not get it ...
3
Solved
I am currently using an imap stream to get emails from an inbox.
Everything is working fine except I am unsure how to get the body text and title of the email. If I do imap_body($connection,$messa...
6
I am still trying to understand e-mail protocols. It seems that IMAP is more powerful than POP3. Why, then, does the POP3 protocol survive? It is still supported by popular email services lik...
3
I'm trying to read the body of an e-mail that is retrieved with node js. I'm using this npm module: https://github.com/mscdex/node-imap
And I can get pretty much all the information of the email, ...
1
Solved
I am using PHP's imap functions and want to retrieve emails with a UID > n. This works when searching dates but not UIDs.
$imap = imap_open($host, $username, $password);
$emails = imap_search($ima...
4
I'm trying to fetch all emails whose subject starts with "New Order" but I can't seem to figure it out. Currently I can search for an exact match with a setup like so...
result, data = M.uid('sear...
2
Solved
I am not sure if it is in the headers or not, but I am looking for a way to tell if an email I receive is a response to an email I sent, and if so, to only grab the new text, not "quoted text"
A l...
3
I'm trying to figure out how to get the latest 3 emails (SEEN and UNSEEN) using imap and php. It need to be ressource-efficient since the mailbox as 1 000 emails inside. Getting all header may need...
3
Solved
I'm just looking into Amazons Web Services and I've used Elastic Beanstalk to set up a Ruby web app. It all works great but with one big exception. I cannot have user email accounts for the domain ...
Spickandspan asked 13/12, 2013 at 18:55
3
Solved
HaskellNet seems to be the only available IMAP client library for Haskell, but it doesn't seem to support TLS connections, which is necessary for accessing Gmail's IMAP servers. Are there any...
3
Solved
I am using ruby's Net::IMAP object and I can retrieve a set of emails using either:
IMAP.all ..args..
Or
IMAP.find ..args..
But is there anyway of retrieving a specific email, preferably by ...
© 2022 - 2024 — McMap. All rights reserved.