Headers
++{headers} ++
+ +{body} +
diff --git a/makespam.py b/makespam.py
new file mode 100644
index 0000000..6703570
--- /dev/null
+++ b/makespam.py
@@ -0,0 +1,70 @@
+import time
+import textwrap
+import re
+import html
+import pyperclip
+
+TEMPLATE = '''
+ Headers
+
+{headers}
+
+
+
+{body}
+
' + line + '
' for line in body] +body = '\n'.join(body) +body = textwrap.indent(body, ' ') + +print('Copy the headers...') +pyperclip.copy('') +while pyperclip.paste() == '': + time.sleep(0.5) +headers = html.escape(pyperclip.paste()) +headers = headers.replace('\r', '') +headers = [line.rstrip() for line in headers.splitlines()] +headers = [line for line in headers if line] +headers = '\n'.join(headers) + +keyed = {} +for line in headers.splitlines(): + key = re.search(r'^([A-Za-z\-]+): ', line, flags=re.MULTILINE) + if key is None: + continue + key = key.group(1) + line = line.replace(key + ':', '' + key + ':') + keyed[key] = line + +selectheaders = [ + keyed.get('From'), + keyed.get('Reply-To'), + keyed.get('Return-Path'), + keyed.get('To'), + keyed.get('Bcc'), + keyed.get('Subject'), + keyed.get('Date'), +] +selectheaders = [s for s in selectheaders if s] +selectheaders = '\n'.join(selectheaders) +selectheaders = textwrap.indent(selectheaders, ' ') + +spam = TEMPLATE.format(body=body, headers=headers, selectheaders=selectheaders) +print(spam) +pyperclip.copy(spam) \ No newline at end of file