semaphore icon indicating copy to clipboard operation
semaphore copied to clipboard

Feature: Add email notification for successful tasks

Open ks-tomas-caetano opened this issue 4 months ago • 0 comments

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

ks-tomas-caetano avatar Nov 28 '25 14:11 ks-tomas-caetano