From 916636d48115709e05e5806eefc43002e52f6698 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sat, 28 Mar 2026 15:17:32 +0000 Subject: [PATCH] Fix SMTP transport test fixtures for secure envelopes --- internal/notifications/email_enhanced_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/notifications/email_enhanced_test.go b/internal/notifications/email_enhanced_test.go index 86725fc80..4e3700ab7 100644 --- a/internal/notifications/email_enhanced_test.go +++ b/internal/notifications/email_enhanced_test.go @@ -600,6 +600,8 @@ func TestSendTLS_Success(t *testing.T) { SMTPHost: "invalid.host.test", SMTPPort: port, TLS: true, + From: "test@example.com", + To: []string{"recipient@example.com"}, }, SkipTLSVerify: true, } @@ -658,6 +660,8 @@ func TestSendStartTLS_Success(t *testing.T) { SMTPHost: host, SMTPPort: port, StartTLS: true, + From: "test@example.com", + To: []string{"recipient@example.com"}, }, SkipTLSVerify: true, }