You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
292 B

  1. #!/usr/bin/env sh
  2. # support smtp
  3. smtp_send() {
  4. _subject="$1"
  5. _content="$2"
  6. _statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
  7. _debug "_subject" "$_subject"
  8. _debug "_content" "$_content"
  9. _debug "_statusCode" "$_statusCode"
  10. _err "Not implemented yet."
  11. return 1
  12. }