From 34f9238cf046a253d4456d09677531a4ecee4843 Mon Sep 17 00:00:00 2001 From: urko Date: Thu, 29 May 2025 10:53:09 +0200 Subject: [PATCH] fix; raw message no subject --- pkg/email/email.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/email/email.go b/pkg/email/email.go index 076d5be..a1e4371 100644 --- a/pkg/email/email.go +++ b/pkg/email/email.go @@ -39,9 +39,8 @@ type MessageWithAttachments struct { } type RawMessage struct { - To string - Subject string - Body string + To string + Body string } type SMTPClientIface interface {