2012-12-25 5 views
8

read this already이 글은 '$'로 시작하여 일부 발신자가 보낸 일부 메일 상자에서 이메일 본문을 가져 오는 스크립트입니다.Python imaplib이 본문 메일을 가져옵니다.

import email, getpass, imaplib, os 

detach_dir = "F:\PYTHONPROJECTS" # where you will save attachments 
user = raw_input("Enter your GMail username --> ") 
pwd = getpass.getpass("Enter your password --> ") 

# connect to the gmail imap server 
m = imaplib.IMAP4_SSL("imap.gmail.com") 
m.login(user, pwd) 

m.select("PETROLEUM") # here you a can choose a mail box like INBOX instead 
# use m.list() to get all the mailboxes 

resp, items = m.search(None, '(FROM "[email protected]")') 
items = items[0].split() # getting the mails id 

my_msg = [] # store relevant msgs here in please 
msg_cnt = 0 
break_ = False 
for emailid in items[::-1]: 
    resp, data = m.fetch(emailid, "(RFC822)") 
    if (break_): 
     break 
    for response_part in data: 
     if isinstance(response_part, tuple): 
      msg = email.message_from_string(response_part[1]) 
      varSubject = msg['subject'] 
      if varSubject[0] == '$': 
       msg_cnt += 1 
       my_msg.append(msg) 
       print msg_cnt 
       print email.message_from_string(response_part[1]) 
       if (msg_cnt == 5): 
        break_ = True 

내가 email.message_from_string(response_part[1])를 인쇄하면, 나는 그것이 (에서 날짜 ...에, 헤더) 제 1 정보를 포함 볼 수 있으며, 전체 텍스트 본문. 그러나 나는 몸 자체를 가져올 수 없다. email.message_from_string(response_part[0])이 메일 IDS를 인쇄하고 email.message_from_string(response_part[2])이 범위를 벗어났습니다. email.message_from_string(response_part[1][0])도하고 있지 않습니다.

감사합니다.

업데이트

지금은 본문이 거의 있습니다. 그러나, 그것은 먼저 오는 정보 성명서에 의해 여전히 버릇이있다. 나는 결과

From nobody Tue Dec 25 11:42:58 2012 

US=3D$4.030 

EastCst=3D$4.036 

NewEng=3D$4.205 

CenAtl=3D$4.149 

LwrAtl=3D$3.921 

Midwst=3D$3.984 

GulfCst=3D$3.945 

RkyMt=3D$4.195 

WCst=3D$4.187 

CA=3D$4.268 

로 얻을 나는 정보가 From nobody Tue Dec 25 11:42:58 2012 제거하고 싶습니다. 내가 처음으로 관련 라인을 찾으려면 텍스트를 파싱 할 수 있다는 것을 알고 있습니다 ... 알아요.

(내 첫 번째 샘플을 연결하기 위해) 때문에 달성하기위한 코드는

if varSubject[0] == '$': 
     r, d = m.fetch(emailid, "(UID BODY[TEXT])") 
     msg_cnt += 1 
     my_msg.append(msg) 
     print email.message_from_string(d[0][1]) 

당신이 더 나은 방법 (아무 정보 문자열)이 있습니까 ??? More : 현재 날짜를 가져 오는 명령은 무엇입니까? 나는 위의 상황에 맞춰서 varDate = msg['date']을 할 수 있다는 것을 알고 있지만, 어떻게 일 년 단위로 가져 오는 것이 좋은가요? 감사

답변

4

중 하나를 수행하여 몸의 내용을 얻을 수 있습니다 텍스트 파일 :

import datetime 
import email 
import imaplib 
import mailbox 


EMAIL_ACCOUNT = "[email protected]" 
PASSWORD = "your password" 

mail = imaplib.IMAP4_SSL('imap.gmail.com') 
mail.login(EMAIL_ACCOUNT, PASSWORD) 
mail.list() 
mail.select('inbox') 
result, data = mail.uid('search', None, "UNSEEN") # (ALL/UNSEEN) 
i = len(data[0].split()) 

for x in range(i): 
    latest_email_uid = data[0].split()[x] 
    result, email_data = mail.uid('fetch', latest_email_uid, '(RFC822)') 
    # result, email_data = conn.store(num,'-FLAGS','\\Seen') 
    # this might work to set flag to seen, if it doesn't already 
    raw_email = email_data[0][1] 
    raw_email_string = raw_email.decode('utf-8') 
    email_message = email.message_from_string(raw_email_string) 

    # Header Details 
    date_tuple = email.utils.parsedate_tz(email_message['Date']) 
    if date_tuple: 
     local_date = datetime.datetime.fromtimestamp(email.utils.mktime_tz(date_tuple)) 
     local_message_date = "%s" %(str(local_date.strftime("%a, %d %b %Y %H:%M:%S"))) 
    email_from = str(email.header.make_header(email.header.decode_header(email_message['From']))) 
    email_to = str(email.header.make_header(email.header.decode_header(email_message['To']))) 
    subject = str(email.header.make_header(email.header.decode_header(email_message['Subject']))) 

    # Body details 
    for part in email_message.walk(): 
     if part.get_content_type() == "text/plain": 
      body = part.get_payload(decode=True) 
      file_name = "email_" + str(x) + ".txt" 
      output_file = open(file_name, 'w') 
      output_file.write("From: %s\nTo: %s\nDate: %s\nSubject: %s\n\nBody: \n\n%s" %(email_from, email_to,local_message_date, subject, body.decode('utf-8'))) 
      output_file.close() 
     else: 
      continue