CLI Email Sender/Spammer - [Command Line Interface]

It supports every kind of SMTP Service for example SMTP it also supports IPOP, IMAP and many other...

·

1 min read

Code

import smtplib
import os

def clear():
    os.system('cls')

clear()

login_em = input(f'Email: ')
login_pa = input(f'Password: ')
send_to = input(f'Send to: ')
send_bo = input(f'Your Message: ')

def sendem():
    global login_em
    global login_pa
    global send_to
    global send_bo

    server = smtplib.SMTP('smtp.gmail.com', 587)
    server.starttls()
    server.login(f'{login_em}', f'{login_pa}')
    server.sendmail(f'{login_em}',
                    f'{send_to}',
                    f'{send_bo}'
)

sendem()

If you want to spam emails to a person

import smtplib
import os

def clear():
    os.system('cls')

clear()

login_em = input(f'Email: ')
login_pa = input(f'Password: ')
send_to = input(f'Send to: ')
send_bo = input(f'Your Message: ')

def sendem():
    global login_em
    global login_pa
    global send_to
    global send_bo

    server = smtplib.SMTP('smtp.gmail.com', 587)
    server.starttls()
    server.login(f'{login_em}', f'{login_pa}')
    server.sendmail(f'{login_em}',
                    f'{send_to}',
                    f'{send_bo}'
)

for i in range(100):                            #100 Times
    sendem()