Skip to main content

SimpleNotification

Simple Notification Icon

Description

SimpleNotification is a lightweight application designed to show a simple notification prompt.

Parameters

ParameterAliasRequiredDescriptionType
--message-mtrueThe message content of the notificationString
--imageurl-ifalseUrl to the image displayed in the notificationString
--email-efalseEmail address to display in the notificationString
--phone-pfalsePhone number to display in the notificationString

TOML Config File

A TOML configuration file can be used instead of the other parameters.

ParameterAliasRequiredDescriptionType
--configfile-ctruePath to the config fileString

The file should have the following format:

message = "Hello, World!"
image_url = "https://some.path.to/image.png"
email = "support@company.local"
phone = "000-000-0000"

Usage

Images should ideally be a 1:1 ratio and at least 200x200px for displaying in the notification window properly.

SimpleNotification.exe --Message "Hello, World!" --ImageURL "https://raw.githubusercontent.com/ProVal-Tech/SimpleNotification/refs/heads/main/res/SimpleNotification.jpeg" --Email "myemail@somewhere.local" --Phone "000-000-0000"
SimpleNotification.exe -c "C:\config.toml"