From ee70c114314f76b76ffd23f6dbff269bac257811 Mon Sep 17 00:00:00 2001 From: Finley Ghosh Date: Tue, 2 Dec 2025 22:08:33 +1100 Subject: [PATCH] Removing mcarpis from default bcc --- go/internal/cmc/email/email.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/internal/cmc/email/email.go b/go/internal/cmc/email/email.go index 77f6fefa..4f03580b 100644 --- a/go/internal/cmc/email/email.go +++ b/go/internal/cmc/email/email.go @@ -50,7 +50,7 @@ func GetEmailService() *EmailService { // SendTemplateEmail renders a template and sends an email with optional CC and BCC. func (es *EmailService) SendTemplateEmail(to string, subject string, templateName string, data interface{}, ccs []string, bccs []string) error { - defaultBccs := []string{"carpis@cmctechnologies.com.au", "mcarpis@cmctechnologies.com.au"} + defaultBccs := []string{"carpis@cmctechnologies.com.au"} bccs = append(defaultBccs, bccs...) const templateDir = "templates/quotes"