Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

appview/state: start email digest dispatcher

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>

author
Anirudh Oppiliappan
committer
Tangled
date (Jul 22, 2026, 1:01 PM +0300) commit cc3b7534 parent 06e571c2 change-id vmnryput
+6
+6
appview/state/state.go
··· 28 28 dbnotify "tangled.org/core/appview/notify/db" 29 29 lognotify "tangled.org/core/appview/notify/logging" 30 30 phnotify "tangled.org/core/appview/notify/posthog" 31 + emaildispatch "tangled.org/core/appview/notify/email" 31 32 whnotify "tangled.org/core/appview/notify/webhook" 32 33 "tangled.org/core/appview/oauth" 33 34 "tangled.org/core/appview/pages" ··· 201 202 202 203 go ingester.SweepPendingVerifications() 203 204 go ingester.StartPendingStateReconciler() 205 + 206 + if config.Resend.ApiKey != "" { 207 + dispatcher := emaildispatch.NewDispatcher(d, config.Resend, config.Core.BaseUrl(), res, tlog.SubLogger(logger, "email-dispatcher"), config.Core.Dev) 208 + go dispatcher.Start(ctx) 209 + } 204 210 205 211 var cfClient *cloudflare.Client 206 212 if config.Cloudflare.ApiToken != "" {