RespondNotFound responds with not found
(w http.ResponseWriter)
| 46 | |
| 47 | // RespondNotFound responds with not found |
| 48 | func RespondNotFound(w http.ResponseWriter) { |
| 49 | http.Error(w, "not found", http.StatusNotFound) |
| 50 | } |
| 51 | |
| 52 | // RespondInvalidSMTPConfig responds with invalid SMTP config error |
| 53 | func RespondInvalidSMTPConfig(w http.ResponseWriter) { |