जीमेल से अटैचमेंट के साथ सभी ईमेल कैसे डाउनलोड कर सकते हैं?


83

मैं Gmail से कैसे जुड़ूं और यह निर्धारित करूं कि किन संदेशों में अनुलग्नक हैं? मैं तब प्रत्येक अनुलग्नक को डाउनलोड करना चाहता हूं, विषय के रूप में मैं इसे संसाधित करता हूं: प्रत्येक विषय के लिए: और इससे:।


24
यह साइट अच्छी तरह से परिभाषित सवालों के अच्छी तरह से परिभाषित जवाब पाने के बारे में है। क्या मेरा प्रश्न अच्छी तरह से परिभाषित नहीं है? अब मैं 3 भाषाओं में से एक में एक अच्छी तरह से परिभाषित उत्तर की तलाश कर रहा हूं जो मैं आमतौर पर उपयोग करता हूं।

जवाबों:


154

यह मुश्किल है :-)

import email, getpass, imaplib, os

detach_dir = '.' # directory where to save attachments (default: current)
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")

# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)
m.select("[Gmail]/All Mail") # here you a can choose a mail box like INBOX instead
# use m.list() to get all the mailboxes

resp, items = m.search(None, "ALL") # you could filter using the IMAP rules here (check http://www.example-code.com/csharp/imap-search-critera.asp)
items = items[0].split() # getting the mails id

for emailid in items:
    resp, data = m.fetch(emailid, "(RFC822)") # fetching the mail, "`(RFC822)`" means "get the whole stuff", but you can ask for headers only, etc
    email_body = data[0][1] # getting the mail content
    mail = email.message_from_string(email_body) # parsing the mail content to get a mail object

    #Check if any attachments at all
    if mail.get_content_maintype() != 'multipart':
        continue

    print "["+mail["From"]+"] :" + mail["Subject"]

    # we use walk to create a generator so we can iterate on the parts and forget about the recursive headach
    for part in mail.walk():
        # multipart are just containers, so we skip them
        if part.get_content_maintype() == 'multipart':
            continue

        # is this part an attachment ?
        if part.get('Content-Disposition') is None:
            continue

        filename = part.get_filename()
        counter = 1

        # if there is no filename, we create one with a counter to avoid duplicates
        if not filename:
            filename = 'part-%03d%s' % (counter, 'bin')
            counter += 1

        att_path = os.path.join(detach_dir, filename)

        #Check if its already there
        if not os.path.isfile(att_path) :
            # finally write the stuff
            fp = open(att_path, 'wb')
            fp.write(part.get_payload(decode=True))
            fp.close()

Wowww! वह कुछ ऐसा था। ;-) लेकिन मस्ती के लिए, जावा में ही प्रयास करें!

वैसे, मैंने परीक्षण किया कि एक शेल में, इसलिए कुछ त्रुटियां होने की संभावना है।

का आनंद लें

संपादित करें:

क्योंकि मेल-बॉक्स के नाम एक देश से दूसरे देश में बदल सकते हैं, मैं इस त्रुटि से बचने के लिए m.list()इसमें एक आइटम करने और चुनने की सलाह देता हूं m.select("the mailbox name"):

imaplib.error: राज्य AUTH में गैरकानूनी SEARCH को कमांड करें, केवल चयनित राज्यों में अनुमति दी गई है


धन्यवाद जेएफ ने लिखा है कि विकट और गंदा, आपने इसे मूल्य दिया :-D
ई-सिटिस

यह एक अच्छा जवाब है। यह बड़े अटैचमेंट्स पर एक मॉलोक त्रुटि के साथ मर जाता है। अजगर (57,780) malloc: *** mmap (आकार = 9,658,368)

स्क्रिप्ट में कहाँ मरता है? मुझे यह त्रुटि नहीं मिली, लेकिन हमें एक समाधान मिल सकता है।
ई-सिटिस

imaplib.py / 2.5/lib/python2.5/imaplib.py ", पंक्ति 437, भ्रूण टाइप में, dat = self._simple_command (नाम, message_set, message_parts)

यदि आपको इसे अत्यधिक सक्रिय प्रणाली पर चलाना है, तो क्या हर ईमेल को अलग-अलग, या समय-समय पर एक साथ संभालना बेहतर होगा? दोनों समाधानों के लिए एक कतार की आवश्यकता होगी, लेकिन मैं सोच रहा हूं कि कौन सा अधिक आसानी से स्केलेबल होगा?
kari.patila

9

मैं पर्ल पर विशेषज्ञ नहीं हूं, लेकिन मुझे क्या पता है कि GMail IMAP और POP3, 2 प्रोटोकॉल का समर्थन करता है जो पूरी तरह से मानक हैं और आपको बस ऐसा करने की अनुमति देते हैं।

शायद इससे आपको शुरुआत करने में मदद मिले।


IMAP मैं कहूंगा कि बैकअप उद्देश्यों के लिए दोनों में से अधिक विश्वसनीय है।
क्रिश कुमलर

8
#!/usr/bin/env python
"""Save all attachments for given gmail account."""
import os, sys
from libgmail import GmailAccount

ga = GmailAccount("your.account@gmail.com", "pA$$w0Rd_")
ga.login()

# folders: inbox, starred, all, drafts, sent, spam
for thread in ga.getMessagesByFolder('all', allPages=True):
    for msg in thread:
        sys.stdout.write('.')
        if msg.attachments:
           print "\n", msg.id, msg.number, msg.subject, msg.sender
           for att in msg.attachments:
               if att.filename and att.content:
                  attdir = os.path.join(thread.id, msg.id)
                  if not os.path.isdir(attdir):
                     os.makedirs(attdir)                
                  with open(os.path.join(attdir, att.filename), 'wb') as f:
                       f.write(att.content)

अपरीक्षित

  1. सुनिश्चित करें कि टीओएस ऐसी स्क्रिप्ट को अनुमति देता है अन्यथा आप खाते को निलंबित कर दिया जाएगा
  2. बेहतर विकल्प हो सकते हैं: जीमेल ऑफ़लाइन मोड, थंडरबर्ड + एक्सट्रैक्टटेक्शंस, जीमेलएफएस, जीमेल ड्राइव, आदि।


7

मेल :: वेबमेल :: जीमेल पर एक नज़र डालें :

उपलब्धियां प्राप्त करना

लगाव पाने के दो तरीके हैं:

1 -> द्वारा भेजे गए विशिष्ट अनुलग्नक का संदर्भ भेजकर get_indv_email

# Creates an array of references to every attachment in your account
my $messages = $gmail->get_messages();
my @attachments;

foreach ( @{ $messages } ) {
    my $email = $gmail->get_indv_email( msg => $_ );
    if ( defined( $email->{ $_->{ 'id' } }->{ 'attachments' } ) ) {
        foreach ( @{ $email->{ $_->{ 'id' } }->{ 'attachments' } } ) {
            push( @attachments, $gmail->get_attachment( attachment => $_ ) );
            if ( $gmail->error() ) {
                print $gmail->error_msg();
            }
        }
    }
}

2 -> या अनुलग्नक आईडी और संदेश आईडी भेजकर

#retrieve specific attachment
my $msgid = 'F000000000';
my $attachid = '0.1';
my $attach_ref = $gmail->get_attachment( attid => $attachid, msgid => $msgid );

(अनुलग्नक से डेटा रखने वाले स्केलर का संदर्भ देता है।)


4

जीमेल के भीतर, आप "है: अटैचमेंट" पर फ़िल्टर कर सकते हैं, इसका उपयोग उन संदेशों की पहचान करने के लिए करें जो आपको परीक्षण करते समय मिलने चाहिए। ध्यान दें कि यह दोनों फाइलों को संलग्न फाइलों (पेपरक्लिप आइकन दिखाया गया है) के साथ-साथ इनलाइन संलग्न छवियों (कोई पेपरक्लिप नहीं दिखाया गया है) के साथ देता है।

कोई Gmail API नहीं है, इसलिए IMAP या POP आपके एकमात्र वास्तविक विकल्प हैं। JavaMail एपीआई कुछ सहायता के साथ-साथ यह बहुत ही संक्षिप्त लेख का हो सकता है IMAP से डाउनलोड संलग्नक पर्ल का उपयोग कर । SO पर यहाँ कुछ पिछले प्रश्न भी मदद कर सकते हैं।

यह PHP उदाहरण भी मदद कर सकता है। दुर्भाग्य से मैं जो देख सकता हूं, उसमें imap_header के भीतर कोई अनुलग्नक जानकारी नहीं है, इसलिए शरीर को डाउनलोड करने के लिए एक्स-अटैचमेंट-आईडी फ़ील्ड देखने में सक्षम होना आवश्यक है। (कोई कृपया मुझे गलत साबित करें)।


3

यदि आप में से किसी ने अजगर 3.3 को अद्यतन किया है तो मैंने 2.7 स्क्रिप्ट को यहां से लिया और इसे 3.3 पर अद्यतन किया। जीमेल की जानकारी वापस करने के तरीके के साथ कुछ मुद्दों को भी तय किया।

# Something in lines of http://stackoverflow.com/questions/348630/how-can-i-download-all-emails-with-attachments-from-gmail
# Make sure you have IMAP enabled in your gmail settings.
# Right now it won't download same file name twice even if their contents are different.
# Gmail as of now returns in bytes but just in case they go back to string this line is left here.

import email
import getpass, imaplib
import os
import sys
import time

detach_dir = '.'
if 'attachments' not in os.listdir(detach_dir):
    os.mkdir('attachments')

userName = input('Enter your GMail username:\n')
passwd = getpass.getpass('Enter your password:\n')


try:
    imapSession = imaplib.IMAP4_SSL('imap.gmail.com',993)
    typ, accountDetails = imapSession.login(userName, passwd)
    if typ != 'OK':
        print ('Not able to sign in!')
        raise

    imapSession.select('Inbox')
    typ, data = imapSession.search(None, 'ALL')
    if typ != 'OK':
        print ('Error searching Inbox.')
        raise

    # Iterating over all emails
    for msgId in data[0].split():
        typ, messageParts = imapSession.fetch(msgId, '(RFC822)')

        if typ != 'OK':
            print ('Error fetching mail.')
            raise 

        #print(type(emailBody))
        emailBody = messageParts[0][1]
        #mail = email.message_from_string(emailBody)
        mail = email.message_from_bytes(emailBody)

        for part in mail.walk():
            #print (part)
            if part.get_content_maintype() == 'multipart':
                # print part.as_string()
                continue
            if part.get('Content-Disposition') is None:
                # print part.as_string()
                continue

            fileName = part.get_filename()

            if bool(fileName):
                filePath = os.path.join(detach_dir, 'attachments', fileName)
                if not os.path.isfile(filePath) :
                    print (fileName)
                    fp = open(filePath, 'wb')
                    fp.write(part.get_payload(decode=True))
                    fp.close()

    imapSession.close()
    imapSession.logout()

except :
    print ('Not able to download all attachments.')
    time.sleep(3)

3

सवाल काफी पुराना है और उस समय जीमेल एपीआई उपलब्ध नहीं था। लेकिन अब Google IMAP को एक्सेस करने के लिए जीमेल एपीआई प्रदान करता है। Google का Gmail API यहां देखें । Pypi पर google-api-python-client भी देखें ।


2
/*based on http://www.codejava.net/java-ee/javamail/using-javamail-for-searching-e-mail-messages*/
package getMailsWithAtt;

import java.io.File;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;

import javax.mail.Address;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.NoSuchProviderException;
import javax.mail.Part;
import javax.mail.Session;
import javax.mail.Store;
import javax.mail.internet.MimeBodyPart;
import javax.mail.search.AndTerm;
import javax.mail.search.SearchTerm;
import javax.mail.search.ReceivedDateTerm;
import javax.mail.search.ComparisonTerm;

public class EmailReader {
    private String saveDirectory;

    /**
     * Sets the directory where attached files will be stored.
     * 
     * @param dir
     *            absolute path of the directory
     */
    public void setSaveDirectory(String dir) {
        this.saveDirectory = dir;
    }

    /**
     * Downloads new messages and saves attachments to disk if any.
     * 
     * @param host
     * @param port
     * @param userName
     * @param password
     * @throws IOException
     */
    public void downloadEmailAttachments(String host, String port,
            String userName, String password, Date startDate, Date endDate) {
        Properties props = System.getProperties();
        props.setProperty("mail.store.protocol", "imaps");
        try {
            Session session = Session.getDefaultInstance(props, null);
            Store store = session.getStore("imaps");
            store.connect("imap.gmail.com", userName, password);
            // ...
            Folder inbox = store.getFolder("INBOX");
            inbox.open(Folder.READ_ONLY);
            SearchTerm olderThan = new ReceivedDateTerm (ComparisonTerm.LT, startDate);
            SearchTerm newerThan = new ReceivedDateTerm (ComparisonTerm.GT, endDate);
            SearchTerm andTerm = new AndTerm(olderThan, newerThan);
            //Message[] arrayMessages = inbox.getMessages(); <--get all messages
            Message[] arrayMessages = inbox.search(andTerm);
            for (int i = arrayMessages.length; i > 0; i--) { //from newer to older
                Message msg = arrayMessages[i-1];
                Address[] fromAddress = msg.getFrom();
                String from = fromAddress[0].toString();
                String subject = msg.getSubject();
                String sentDate = msg.getSentDate().toString();
                String receivedDate = msg.getReceivedDate().toString();

                String contentType = msg.getContentType();
                String messageContent = "";

                // store attachment file name, separated by comma
                String attachFiles = "";

                if (contentType.contains("multipart")) {
                    // content may contain attachments
                    Multipart multiPart = (Multipart) msg.getContent();
                    int numberOfParts = multiPart.getCount();
                    for (int partCount = 0; partCount < numberOfParts; partCount++) {
                        MimeBodyPart part = (MimeBodyPart) multiPart
                                .getBodyPart(partCount);
                        if (Part.ATTACHMENT.equalsIgnoreCase(part
                                .getDisposition())) {
                            // this part is attachment
                            String fileName = part.getFileName();
                            attachFiles += fileName + ", ";
                            part.saveFile(saveDirectory + File.separator + fileName);
                        } else {
                            // this part may be the message content
                            messageContent = part.getContent().toString();
                        }
                    }
                    if (attachFiles.length() > 1) {
                        attachFiles = attachFiles.substring(0,
                                attachFiles.length() - 2);
                    }
                } else if (contentType.contains("text/plain")
                        || contentType.contains("text/html")) {
                    Object content = msg.getContent();
                    if (content != null) {
                        messageContent = content.toString();
                    }
                }

                // print out details of each message
                System.out.println("Message #" + (i + 1) + ":");
                System.out.println("\t From: " + from);
                System.out.println("\t Subject: " + subject);
                System.out.println("\t Received: " + sentDate);
                System.out.println("\t Message: " + messageContent);
                System.out.println("\t Attachments: " + attachFiles);
            }

            // disconnect
            inbox.close(false);
            store.close();

        } catch (NoSuchProviderException e) {
            e.printStackTrace();
            System.exit(1);
        } catch (MessagingException e) {
            e.printStackTrace();
            System.exit(2);
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }

    /**
     * Runs this program with Gmail POP3 server
     * @throws ParseException 
     */
    public static void main(String[] args) throws ParseException {
        String host = "pop.gmail.com";
        String port = "995";
        String userName = "user@gmail.com";
        String password = "pass";
        Date startDate = new SimpleDateFormat("yyyy-MM-dd").parse("2014-06-30");
        Date endDate = new SimpleDateFormat("yyyy-MM-dd").parse("2014-06-01");
        String saveDirectory = "C:\\Temp";

        EmailReader receiver = new EmailReader();
        receiver.setSaveDirectory(saveDirectory);
        receiver.downloadEmailAttachments(host, port, userName, password,startDate,endDate);

    }
}

मावेन निर्भरता:

<dependency>
    <groupId>com.sun.mail</groupId>
    <artifactId>javax.mail</artifactId>
    <version>1.5.1</version>
</dependency>

@ जेजेविज मुझे अज्ञात मेजबान अपवाद हमेशा मिल रहा है कृपया मदद करें
राहुल सिंह

1

चूंकि जीमेल मानक प्रोटोकॉल पीओपी और आईएमएपी का समर्थन करता है, इसलिए किसी भी प्लेटफ़ॉर्म, टूल, एप्लिकेशन, कंपोनेंट, या एपीआई जो क्लाइंट प्रोटोकॉल प्रदान करता है या तो काम करेगा।

मेरा सुझाव है कि अपनी पसंदीदा भाषा / मंच (जैसे, "अजगर"), प्लस "पॉप", प्लस "इमैप", प्लस शायद "ओपन सोर्स", प्लस शायद "डाउनलोड" या "समीक्षा" के लिए Google खोज करें, और देखें कि क्या आप विकल्पों के लिए मिलता है।

कई निशुल्क एप्लिकेशन और घटक हैं, कुछ चुनिए जो योग्य लगते हैं, समीक्षाओं की जांच करें, फिर डाउनलोड करें और आनंद लें।


1

आपको इस तथ्य के बारे में पता होना चाहिए कि आपको GMail (POP3 और IMAP दोनों के लिए) से कनेक्ट करने के लिए SSL की आवश्यकता है - यह निश्चित रूप से पोर्ट 25 के अलावा उनके SMTP- सर्वर के लिए भी सही है लेकिन यह एक और कहानी है)।


1

यहाँ कुछ मैंने अपने बैंक स्टेटमेंट को ग्रूवी (जावा प्लेटफ़ॉर्म के लिए गतिशील भाषा) डाउनलोड करने के लिए लिखा है ।

import javax.mail.*
import java.util.Properties

String  gmailServer
int gmailPort
def user, password, LIMIT
def inboxFolder, root, StartDate, EndDate


//    Downloads all attachments from a gmail mail box as per some criteria
//    to a specific folder
//    Based on code from
//    http://agileice.blogspot.com/2008/10/using-groovy-to-connect-to-gmail.html
//    http://stackoverflow.com/questions/155504/download-mail-attachment-with-java
//
//    Requires: 
//        java mail jars in the class path (mail.jar and activation.jar)
//        openssl, with gmail certificate added to java keystore (see agileice blog)
//        
//    further improvement: maybe findAll could be used to filter messages
//    subject could be added as another criteria
////////////////////// <CONFIGURATION> //////////////////////
// Maximm number of emails to access in case parameter range is too high
LIMIT = 10000

// gmail credentials
gmailServer = "imap.gmail.com"
gmailPort = 993

user = "gmailuser@gmail.com"
password = "gmailpassword"

// gmail label, or "INBOX" for inbox
inboxFolder = "finance"

// local file system where the attachment files need to be stored
root = "D:\\AttachmentStore" 

// date range dd-mm-yyyy
StartDate= "31-12-2009"
EndDate = "1-6-2010" 
////////////////////// </CONFIGURATION> //////////////////////

StartDate = Date.parse("dd-MM-yyyy", StartDate)
EndDate = Date.parse("dd-MM-yyyy", EndDate)

Properties props = new Properties();
props.setProperty("mail.store.protocol", "imaps");
props.setProperty("mail.imaps.host", gmailServer);
props.setProperty("mail.imaps.port", gmailPort.toString());
props.setProperty("mail.imaps.partialfetch", "false");

def session = javax.mail.Session.getDefaultInstance(props,null)
def store = session.getStore("imaps")

store.connect(gmailServer, user, password)

int i = 0;
def folder = store.getFolder(inboxFolder)

folder.open(Folder.READ_ONLY)

for(def msg : folder.messages) {

     //if (msg.subject?.contains("bank Statement"))
     println "[$i] From: ${msg.from} Subject: ${msg.subject} -- Received: ${msg.receivedDate}"

     if (msg.receivedDate <  StartDate || msg.receivedDate > EndDate) {
         println "Ignoring due to date range"
         continue
     }


     if (msg.content instanceof Multipart) {
         Multipart mp = (Multipart)msg.content;

         for (int j=0; j < mp.count; j++) {

             Part part = mp.getBodyPart(j);

             println " ---- ${part.fileName} ---- ${part.disposition}"

             if (part.disposition?.equalsIgnoreCase(Part.ATTACHMENT)) {

                 if (part.content) {

                     def name = msg.receivedDate.format("yyyy_MM_dd") + " " + part.fileName
                     println "Saving file to $name"

                     def f = new File(root, name)

                     //f << part.content
                     try {
                         if (!f.exists())
                             f << part.content
                     }
                     catch (Exception e) {
                         println "*** Error *** $e" 
                     }
                 }
                 else {
                    println "NO Content Found!!"
                 }
             }
         }
     }

     if (i++ > LIMIT)
         break;

}

0

क्या आपने विकिपीडिया पर GMail 3rd पार्टी के ऐड-ऑन पर एक नज़र डाली है?

विशेष रूप से, PhpGmailDrive एक खुला स्रोत ऐड-ऑन है जिसका उपयोग आप-के रूप में कर सकते हैं, या शायद प्रेरणा के लिए अध्ययन कर सकते हैं?


0

जावा के लिए, आपको G4J का उपयोग मिलेगा । यह जावा के माध्यम से Google मेल के साथ संवाद करने के लिए एपीआई का एक सेट है (होमपेज पर स्क्रीनशॉट इसके चारों ओर बनाया गया एक प्रदर्शन ईमेल क्लाइंट है)

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.