Created
September 13, 2016 18:01
-
-
Save loldi/f38a025daa91073504612a092cb22ed9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
whoBy = raw_input("WHO IS SENDING THIS SPOOPY EMAIL??: ") | |
replyPrompt = raw_input("WHAT MESSAGE DO YOU WANT BACK???: ") | |
timeResponse = raw_input("HOW MUCH TIME DO THEY HAVE???: ") | |
orElse = raw_input("WHAT ARE THE CONSEQUENCES???: ") | |
body = "YOU HAVE BEEN EMAILED BY " , whoBy ,", REPLY WITH " , replyPrompt , " IN " , timeResponse , " SECONDS OR " , orElse | |
msg.attach(MIMEText(body, 'plain')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment