https://github.com/sajetek-developer/email-warmer
Email warmer
https://github.com/sajetek-developer/email-warmer
email python rainloop snappymail warmer
Last synced: 10 months ago
JSON representation
Email warmer
- Host: GitHub
- URL: https://github.com/sajetek-developer/email-warmer
- Owner: SaJeTek-Developer
- License: mit
- Created: 2023-11-26T15:52:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-27T12:49:41.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T15:49:45.174Z (12 months ago)
- Topics: email, python, rainloop, snappymail, warmer
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# email-warmer
Selenium-based Python script to automate sending emails to warm up your sender reputation and improve email deliverability\
Thanks to [Warmer](https://github.com/WKL-Sec/Warmer)
Why warm up?
- One of the factors spam filters reject emails from new tenants is a filtering technique known as graylisting: When new senders appear, they're treated more suspiciously than senders with a previously-established history of sending email messages (think of it as a probation period). More on this [here](https://learn.microsoft.com/en-us/exchange/troubleshoot/email-delivery/ndr/fix-error-code-451-4-7-500-699-asxxx-in-exchange-online)
**Supported Email Providers**
- Snappymail/Rainloop
## Requirements
To run the script, you need to install the required Python packages. You can install these packages using pip:
```bash
pip3 install -r requirements.txt
```
## Usage
**Update the script with your snappymail/rainloop url**\
Add the emails that you want to warmup in the credentials_list. [This can be used instead of passing user password arguments]\
To warmup an account by sending 5 emails to a single target, use the following command format:
```bash
python3 Warmer.py -u -p -T -m 3 -x 5
```
To warmup an account against a list of targets from a file, use the following command format:
```bash
python3 Warmer.py -u -p -t -m 1
```
```bash
python3 Warmer.py -t -m 1
```
### Command Line Arguments
The script supports the following command line arguments:
```bash
-h, --help: Show this help message and exit
-u: Sender Email ID
-p: Sender Email Password
-T: Single Target Email ID
-t: Multiple Targets from Wordlist
-x: No. of Emails to Send (applicable only for single targets)
-m: Email Content Mode [ 1, 2, 3] where 1 = Gibberish sentence, 2 = AI-Generated, 3 = Randomly choose from pre-defined templates
```