From 10900093e071835d0593a21281eea9a4acded4e1 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Tue, 2 Jun 2026 11:44:35 -0400 Subject: [PATCH] log that email has sent successfully --- src/email/email.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/email/email.go b/src/email/email.go index e2ef918..285e661 100644 --- a/src/email/email.go +++ b/src/email/email.go @@ -51,5 +51,7 @@ func (account *EmailAccount) SendEmail(toEmails []string, subject string, messag if err != nil { logging.Error("Failed to send email") logging.Error(err.Error()) + return } + logging.Info("Successfully sent email") }