A script that allows you to organise a secret santa game.
Stefan Sterz
b61d1dd8e2
these changes should lower the spam score for systems that use e.g. spamassassin and increase the likelihood of the email being delivered. |
||
---|---|---|
.gitignore | ||
config.json | ||
LICENSE | ||
participants.json | ||
README.md | ||
wichteln.py |
Wichteln
This is a small script that allows you to organize a secret santa game (or »Wichteln« in German). It accepts the following arguments:
-h
displays a help message-c FILE
or--config FILE
specifies the location of the configuration file, which should contain all information needed to connect to an SMTP server. An example configuration file is given inconfig.json
. It also defaults toconfig.json
.-p FILE
or--participants FILE
specifies the location of the file containing a list of participants. An example file is provided inparticipants.json
. It also defaults toparticipants.json
.
participants.json Format
The participants.json
file contains an array of objects. Each objects should specifiy the following three fields:
name
The name of the participantmail
The email adress of the participantgender
This field is necessary, because this script has to send emails adressing each participant correctly and in German that depends on the gender of the recipient. However instead of just choosing a boolean value to represent gender, I chose to just store the actually needed information: the ending for the German word »Lieb(e|er|...)«. This allows for more then two genders and is in my opinion generally a little bit more elegant to use in this context.
Note: This script was created in a German-speaking context, if you want to adapt the emails that this script sends, change the text in lines 78 and 81-84.