fix: remove typos etc.

This commit is contained in:
Stefan Sterz 2018-09-24 23:06:21 +02:00
parent ed7e895daa
commit a763c653bd
Signed by: sterzy
GPG Key ID: DAE2BE6432FB782A
1 changed files with 5 additions and 5 deletions

View File

@ -1,17 +1,17 @@
# Wichteln
This is a smalls script that allows you to organise a secret santa game (or
»Wichteln« in German). It has the follwing arguments:
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 in `config.json`. It also defaults to `config.json`.
- `-p FILE` or `--participants FILE` specifies the location of the file containing a list of participants. An example configuration file is given in `participants.json`. It also defaults to `participants.json`.
- `-p FILE` or `--participants FILE` specifies the location of the file containing a list of participants. An example file is provided in `participants.json`. It also defaults to `participants.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 participant
- `mail` The email adress of the participant
- `gender` 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.
- `gender` 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.
**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.