semaphore
semaphore copied to clipboard
Feature: Add email notification for successful tasks
Related to
Service (scheduled tasks, alerts)
Impact
nice to have for enterprise usage
Missing Feature
There is no "t.sendMailAlert()" for non failed tasks.
The update would only be adding 1 line, so it seems reasonable.
Implementation
// For SUCCESS, FAIL, or WAITING_CONFIRMATION - sends other alerts
if status.IsNotifiable() {
t.sendTelegramAlert()
t.sendSlackAlert()
t.sendRocketChatAlert()
t.sendMicrosoftTeamsAlert()
t.sendDingTalkAlert()
t.sendGotifyAlert()
t.sendMailAlert()
}
Design
No response