ncorbuk / Python---Email-Bomber

Python Email Bomber / Bomb
MIT License
190 stars 119 forks source link

Issue with subject/message #12

Open Aaaron1320 opened 2 years ago

Aaaron1320 commented 2 years ago

I put subject and message still pops up as No Subject or No message

ghost commented 2 years ago

Yes you definitely can, simply replace self.msg with the following code.

message = """From: From Person from@fromdomain.com To: To Person to@todomain.com Subject: SMTP e-mail test This is a test e-mail message. """

Aaaron1320 commented 2 years ago

Which line

ghost commented 2 years ago

Line number 97 in the main execution file.

Simply change line 97 with the following code. self.msg = "From: From Person from@fromdomain.com\nTo: To Person to@todomain.com\nSubject: SMTP e-Mail Test\nThis is a test e-mail message."