Skip to content

An automated, free mass emailing script that sends individual emails to unlimited addresses.

Notifications You must be signed in to change notification settings

trevtravtrev/MassEmailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

MassEmailer

A simple mass emailing script. Send an email to an unlimited amount of email addresses in separate emails.

Python 3.8
Dependencies: Standard Library

How To Use:

  1. Download MassEmailer.py to a folder
  2. Create a .txt file for your email body text
  3. Create another .txt file with your newline separated email list
  4. Open MassEmailer.py and change function parameters to your own
    • Your email address
    • Your email address password
    • Your email provider's server
    • Number of email addresses from your addresses text file you want to send to each run
    • Your email address text file name
    • Your email body text
    • Your email subject

Example Use:

  • Make a file called addresses.txt containing 5,000 email addresses
  • Make a file called email.txt that contains just the body of your email
  • Input all your personal parameters into MassEmailer.py
  • For gmail, set the "num_of_addresses" parameter to 100 (100 email/day gmail limit)
  • Schedule this script to run every 24 hours
  • When the script runs once there will be 4,900 email addresses left in addresses.txt, after the second run there will be 4,800 email addresses left in addresses.txt, etc

Example Code:

email_address_list = parse_email_addresses('addresses.txt', 100)
    
for email_address in email_address_list:
    email_message = create_message('Hello, this is the email subject', 'hi@hello.com', email_address, body_text, attachments=['file_path1','file_path2', ...])
    send_email('hi@hello.com', 'password123', email_message)
    sleep(1)

Important Notes:

  • This program has you input how many of the email addresses from your email address .txt file you want to send to each run, this is due to email send limits like gmail's limiting to only sending 100 emails per day. Once the program sends to those email addresses, it deletes the used addresses from your .txt file only leaving the un-used addresses. Keep a copy of your original email list safe elsewhere or you will lose ALL of them once the program has sent an email to them.
  • For this to work with gmail, you must turn "less secure app access" ON in your gmail settings. Here is a guide: https://support.google.com/accounts/answer/6010255

About

An automated, free mass emailing script that sends individual emails to unlimited addresses.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages