Check ME

Importing mail program

Taking User details and login


In [ ]:
__author__ = 'Shahariar Rabby'
from ReceiveMail import * #this is the python code for Recive Mail.ipynb file

Reading last 10 mail as default. User can change it


In [ ]:
read = int(raw_input("Enter how many message you want to read: "))
read_email_from_gmail(read=read)

Start a server, That check inbox in every 15 sec and give notification if new mail recive


In [ ]:
server()