#!/bin/python3.9 import os, tempfile, subprocess, re, sys from datetime import datetime, timedelta from uuid import uuid4 os.chdir(os.path.dirname(__file__)) EDITOR = os.environ.get('EDITOR', 'vim') os.makedirs('scheduled', exist_ok=True) tomorrow = datetime.utcnow() + timedelta(days=1) tomorrow = tomorrow.replace(microsecond=0, second=0, minute=15*int(tomorrow.minute/15)) initial_msg = f'To: \nSubject: \nScheduled to (UTC): {tomorrow.isoformat()}\n---- Body ----' with tempfile.NamedTemporaryFile() as file: file.write(bytes(initial_msg, encoding='utf-8')) file.flush() subprocess.call([EDITOR, file.name]) file.seek(0) msg = file.read().decode() to = re.findall(r'To: (.*)\n', msg)[0] subject = re.findall(r'Subject: (.*)\n', msg)[0] if not to or not subject: print('ERROR: recipient or subject empty') exit(1) filename = f'scheduled/{to}:{subject.lower().replace(" ", "_")}.{uuid4().hex}.mail' with open(filename, 'w') as file: file.write(msg)