আমি কীভাবে Gmail থেকে সংযুক্তি সহ সমস্ত ইমেল ডাউনলোড করতে পারি?


83

আমি কীভাবে Gmail এর সাথে সংযোগ করব এবং কোন বার্তায় সংযুক্তি রয়েছে তা নির্ধারণ করব? তারপরে আমি প্রতিটি সংযুক্তি ডাউনলোড করতে চাইছি, বিষয়টি মুদ্রণ করে: এবং থেকে: প্রতিটি বার্তাটির প্রক্রিয়া করার সাথে সাথে।


24
এই সাইটটি ভাল-সংজ্ঞায়িত প্রশ্নের ভাল সংজ্ঞা দেওয়া উত্তর সম্পর্কে answers আমার প্রশ্নটি কি সঠিকভাবে সংজ্ঞায়িত হয়নি? আমি এখন আমি সাধারণত যে ভাষা ব্যবহার করি সেগুলির মধ্যে 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()

বাহ! এটা কিছু ছিল। ;-) তবে জাভাতে একই চেষ্টা করুন, কেবল মজাদার জন্য!

যাইহোক, আমি এটি শেলটিতে পরীক্ষা করেছি, তাই কিছু ত্রুটি সম্ভবত রয়ে গেছে।

উপভোগ করুন

সম্পাদনা:

যেহেতু মেল-বাক্সের নামগুলি এক দেশ থেকে অন্য দেশে পরিবর্তিত হতে পারে, তাই আমি এই ত্রুটিটি এড়াতে m.list()আগে কোনও আইটেমটি করার এবং এটি বাছাইয়ের পরামর্শ দিই m.select("the mailbox name"):

imaplib.error: অনুসন্ধান কমান্ড রাষ্ট্রীয়ভাবে অবৈধ, শুধুমাত্র নির্বাচিত রাজ্যে অনুমোদিত


ধন্যবাদ জেএফ লিখেছিল যে উউক এবং নোংরা, আপনি এটির মূল্য দিয়েছেন :-D
ই-সন্তুষ্ট

এটি একটি ভাল উত্তর। এটি বড় সংযুক্তিতে ম্যালোক ত্রুটিতে মারা যায়। পাইথন (57780) যদি malloc: *** mmap (আকার = 9658368)

লিপিতে কোথায় মারা যায়? আমি এই ত্রুটিটি পাই না, তবে আমরা একটি কার্যকর খুঁজে পেতে পারি।
ই-সন্তুষ্ট

imaplib.py lib: (*** ত্রুটি: অঞ্চল বরাদ্দ করতে পারে না) ত্রুটি শ্বাস, তথ্য = এম.ফ্যাচ (ইমেলিড, "(আরএফসি 822)") # মেল ফাইল আনছে "/ লাইব্রেরি / ফ্রেমওয়ার্কস / পাইথন.ফ্রেমওয়ার্ক / সংস্করণ /2.5/lib/python2.5/imaplib.py ", লাইন 437, এ, দেয় = self._simple_command (নাম, message_set, message_parts) typ আনা

আপনি যদি এটি একটি অত্যন্ত সক্রিয় সিস্টেমে চালাতে চান তবে প্রতিটি ইমেল আলাদাভাবে পরিচালনা করা বা পর্যায়ক্রমে সমস্ত একবারে পরিচালনা করা ভাল? উভয় সমাধানের জন্য একটি সারি লাগবে, তবে আমি ভাবছি কোনটি আরও সহজেই স্কেলযোগ্য হবে?
কারি.পাতিলা

9

আমি পার্লের বিশেষজ্ঞ নই, তবে আমি যা জানি তা হ'ল জিমেইল আইএমএপি এবং পিওপি 3 সমর্থন করে যা সম্পূর্ণ মানসম্পন্ন এবং আপনাকে ঠিক এটি করার অনুমতি দেয়।

হতে পারে এটি আপনাকে শুরু করতে সহায়তা করে।


আইএমএপ আমি বলব ব্যাকআপ উদ্দেশ্যে দু'জনের আরও বেশি নির্ভরযোগ্য।
ক্রিস কুমার 8:38

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. আরও ভাল বিকল্প থাকতে পারে: GMail অফলাইন মোড, থান্ডারবার্ড + এক্সট্র্যাক্ট এক্সটেনশানস, জিএমএলএফএস, জিমেইল ড্রাইভ, ইত্যাদি।


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 এর মধ্যে, আপনি "has: সংযুক্তি" এ ফিল্টার করতে পারেন, পরীক্ষার সময় আপনি যে বার্তাগুলি পাচ্ছেন তা সনাক্ত করতে এটি ব্যবহার করুন। দ্রষ্টব্য এটি সংযুক্ত ফাইল (পেপারক্লিপ আইকন দেখানো হয়েছে), পাশাপাশি ইনলাইন সংযুক্ত চিত্রগুলির (কোনও পেপারক্লিপ দেখানো হয়নি) উভয় বার্তা দেবে বলে মনে হচ্ছে।

কোনও জিমেইল এপিআই নেই, তাই আইএমএপ বা পিওপি হ'ল আপনার আসল বিকল্প। JavaMail এপিআই কিছু সহায়তা সেইসাথে এই খুব বাহুল্যবর্জিত প্রবন্ধের হতে পারে IMAP এর থেকে ডাউনলোড সংযুক্তি পার্ল ব্যবহার । এখানে এসও সম্পর্কিত কিছু পূর্ববর্তী প্রশ্নগুলিও সহায়তা করতে পারে।

এই পিএইচপি উদাহরণটি সাহায্য করতে পারে। দুর্ভাগ্যক্রমে আমি যা দেখতে পাচ্ছি তা থেকে, ইম্যাম্প_হেডারের মধ্যে কোনও সংযুক্তি সম্পর্কিত তথ্য নেই, তাই শরীরের ডাউনলোড করার জন্য এক্স-সংযুক্তি-আইডি ক্ষেত্রটি দেখতে সক্ষম হওয়া প্রয়োজন। (কেউ দয়া করে আমাকে ভুল প্রমাণ করুন)।


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

প্রশ্নটি বেশ পুরানো এবং সেই সময়ে Gmail এপিআই উপলব্ধ ছিল না। তবে এখন গুগল আইএমএপি অ্যাক্সেস করতে জিমেইল এপিআই সরবরাহ করে। গুগলের জিমেইল এপিআই এখানে দেখুন । আরো দেখুন Google এর API-পাইথন ক্লায়েন্ট pypi উপর।


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

যেহেতু Gmail প্রমিত প্রোটোকলগুলি পিওপি এবং আইএমএএপ সমর্থন করে তাই যে কোনও প্ল্যাটফর্ম, সরঞ্জাম, অ্যাপ্লিকেশন, উপাদান, বা এপিআই যে কোনও প্রোটোকলের ক্লায়েন্টের পক্ষে সরবরাহ করে কাজ করা উচিত।

আমি আপনার পছন্দসই ভাষা / প্ল্যাটফর্মের জন্য একটি গুগল অনুসন্ধান করার পরামর্শ দিচ্ছি (যেমন, "পাইথন"), আরও "পপ", আরও "ইমপ্যাক", আরও সম্ভবত "মুক্ত উত্স", আরও সম্ভবত "ডাউনলোড" বা "পর্যালোচনা", এবং দেখুন কি আপনি বিকল্প জন্য পেতে।

অসংখ্য বিনামূল্যে অ্যাপ্লিকেশন এবং উপাদান রয়েছে, উপযুক্ত বলে মনে হচ্ছে এমন কয়েকটি বাছাই করুন, পর্যালোচনা পরীক্ষা করুন, তারপরে ডাউনলোড করুন এবং উপভোগ করুন।


1

আপনার সত্যটি সম্পর্কে সচেতন হওয়া উচিত যে আপনাকে জিএমইলে কানেক্ট করার জন্য এসএসএল প্রয়োজন (পিওপি 3 এবং আইএমএপি উভয়ের জন্যই - এটি অবশ্যই পোর্ট 25 বাদে তাদের এসএমটিপি-সার্ভারগুলির ক্ষেত্রে সত্য তবে এটি অন্য গল্প)।


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 তৃতীয় পক্ষের অ্যাড-অনগুলি একবার দেখেছেন?

বিশেষত, পিএইচপিমেইলড্রাইভ এমন একটি ওপেন সোর্স অ্যাড-অন যা আপনি যেমনটি ব্যবহার করতে সক্ষম হতে পারেন বা অনুপ্রেরণার জন্য সম্ভবত অধ্যয়ন করছেন?


0

জাভা এর জন্য, আপনি ব্যবহারের জি 4 জে পাবেন । এটি জাভা মাধ্যমে গুগল মেল এর সাথে যোগাযোগ করার জন্য এপিআইয়ের একটি সেট (হোমপেজের স্ক্রিনশটটি এর চারপাশে নির্মিত একটি প্রদর্শনী ইমেল ক্লায়েন্ট)

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.