Email qr-code console generator.
It generates a email qrcode in the .png format based on a env.json file.
- first run generates env.json in the same directory:
{
"qrcSize": 256,
"mailto": "example@example.com",
"subject": "Example Subject"
}- further you should to edit env.json file with your data
- second run generates qr code in in the same directory based on your data in env.json
| Key | Value Type | Mandatory |
|---|---|---|
| qrcSize | int | Yes |
| mailto | string | Yes |
| subject | string | Yes, can be empty |
{
"qrcSize": 256,
"mailto": "example@example.com",
"subject": "Example Subject"
}- without spaces
{
"qrcSize": 256,
"mailto": "example@example.com",
"subject": ""
}- with any spaces is allowed
{
"qrcSize": 256,
"mailto": "example@example.com",
"subject": " "
}