-
Notifications
You must be signed in to change notification settings - Fork 0
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.
Python 3.4
- When running in MS Windows, there is a Maximum URL Length of 2083 characters.
refer: https://support.microsoft.com/en-us/kb/208427
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"
]
}