Skip to content

mailto.py

icarus523 edited this page Feb 28, 2017 · 2 revisions

This is a glorified python script to create mailto: HTML links that will allow you to create a new email, with correct to:/cc: and bcc: addresses based on a template.

The script utilises a JSON file to store Email Groups and specific Email Addresses to the most common emails sent by Technical Unit.

Requirements:

Python 3.4

Limitations:

Examples:

Example contents of JSON email datafile, with default filename: "email_data.json"

DEFAULT_EMAIL_DATA = {
   "QALAB":[
        "someguy@qalab.com.au"
   ],
   "Technical Requirements":[
        "joeblow@home.net",
        "jane.dow@work.net", 
       "here.there@work.net"
   ]
}

Clone this wiki locally