mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-10-12 20:27:27 +08:00
18 lines
193 B
Bash
Executable File
18 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# card-generation.sh
|
|
|
|
. ./.env
|
|
|
|
if [ "$REQUEST_METHOD" = "GET" ]; then
|
|
|
|
print_page
|
|
|
|
elif [ "$REQUEST_METHOD" = "POST" -a $# -eq 3 ]; then
|
|
|
|
send_mail "$1" "$2"
|
|
|
|
fi
|
|
|
|
write_OUTPUT
|