Skip to content

Currently, Gmail is limited to deleting 50 emails per cycle, which is incredibly tedious for someone who harbors +1000 unread email messages. This program is meant to automate this process.

License

Notifications You must be signed in to change notification settings

aasmal97/Delete-Unread-Emails-Gmail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Delete-Unread-Emails-Gmail

Currently, Gmail is limited to deleting 50 emails per cycle, which is incredibly tedious for someone who harbors +1000 unread email messages. This program is meant to automate this process.

Program Efficiency

  • Overview:
    • Deletes 95% of unread messages on its first run, and 100% on its second one.
    • It will take an average of 5 seconds to evaluate and delete every 50 emails.
      • This a limitation determined by Gmail, because the program MUST wait for the emails to load, in order to delete them. If you have a fast internet connection, you may be able to run the program faster than this.

Prerequisites

Installing necessary modules

You are ready to run the program!

  • If you are using an IDE, you can easily click on the play button on the index.py file.
  • You may also run this program from the terminal

Important Notices:

  1. This program REQUIRES you to manually input your username/email, and click the next button.
    • This is due to Google's incredibly tough and secure bot detection algorithms. If this were completely automated, the user would be unable to sign into their account due to secruity risks. However, after manually entering your username/email and clicking next, everything from inputting your password to deletion of emails, is completely automated
    • If you are trying to enter an organization email (i.e cornell.edu, etc) you need to remove the code that automates entering a password. Below is the code that needs to be removed:
    def signIn():
          #user is given 40 sec to manually type in username and click next
          time.sleep(40)
          # to use this script for organization emails (i.e cornell.edu, job.com, etc)
          # comment the bottom 4 lines out and manually input both username and password
          passWordBox = driver.find_element_by_xpath(
              '//*[@id ="password"]/div[1]/div / div[1]/input')
          passWordBox.send_keys(password)
          nextBtn =  driver.find_element_by_xpath('//*[@id ="passwordNext"]')
          nextBtn.click() 
    
    • You are given 40 seconds to manually input this information, but its duration can be increased in the index.py file.
  2. This code runs optimally on Google Chrome version 93.0.4577.82, as of Sept 18th, 2021.
    • If run on a different verison, setup portion of code may need adjustments
  3. This project will not be maintained by owner, but feel free to use it as a template for your own projects
  4. Do not create a verison of this program that infringes upon the privacy rights of others.

About

Currently, Gmail is limited to deleting 50 emails per cycle, which is incredibly tedious for someone who harbors +1000 unread email messages. This program is meant to automate this process.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages