From 60b1c3e24fb97b3625c09dd493570574fb85062a Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 9 Jun 2026 07:58:01 -0700 Subject: [PATCH] honor email notifications setting --- go/internal/network/service.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/go/internal/network/service.go b/go/internal/network/service.go index 284f332..a39efcf 100644 --- a/go/internal/network/service.go +++ b/go/internal/network/service.go @@ -277,6 +277,9 @@ func (s *serviceImpl) AcceptInvitation(ctx context.Context, networkID, email, hu continue } + if human.Email == "" || !human.EmailNotificationsEnabled { + continue + } emailRecipients = append(emailRecipients, human.Email) } }