This is a tool for the WebUntis website, that sends notifications through different configurable channels like Telegram or E-Mail to inform you about changes of your school lessons.
- Telegram
- Download the latest release
- Unzip the binaries in folder that your prefer (for example
$pwd/bin/UntisNotifier) - Create a configuration in the Configfile location
- Start it with
dotnet $binariesLocation/UntisNotifier.dll
Configfile location under Linux: $pwd/.config/UntisNotifier
Configfile location under Windows: %appdata%\UntisNotifier\UntisNotifier.json
{
"NOTE": "THIS IS ONLY A EXAMPLE CONFIG",
"user" : {
"name" : "userName",
"password" : "password",
"school" : "school"
},
"notifiers" : {
"console" : {
"active" : "true"
},
"email" : {
"active" : "true",
"fromEmail" : "email",
"toEmail" : "email",
"password" : "password",
"smtpServer" : "server",
"smtpPort" : "port"
},
"telegram" : {
"active" : "true",
"token" : "token",
"chatId" : "chatId"
}
}
}You need to have installed the latest version of .NET Core