mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-14 18:31:44 +00:00
16 lines
203 B
Bash
16 lines
203 B
Bash
#!/usr/bin/env sh
|
|
|
|
# support local mail app
|
|
|
|
|
|
|
|
mail_send() {
|
|
_subject="$1"
|
|
_content="$2"
|
|
_statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
|
|
|
|
_err "Not implemented yet."
|
|
return 1
|
|
}
|
|
|