Removing mcarpis from default bcc

This commit is contained in:
Finley Ghosh 2025-12-02 22:08:33 +11:00
parent ba770cb87d
commit ee70c11431

View file

@ -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"