Skip to content

Commit

Permalink
removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
vtopc committed Dec 2, 2024
1 parent f310467 commit 9ae7f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion messages_v5.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func (m *plainMessageV5) AddRecipientAndVariables(r string, vars map[string]inte
}

func (m *mimeMessageV5) AddRecipient(recipient string) error {
if m.RecipientCount() >= MaxNumberOfRecipients { // ??????????????????????????????????????????????
if m.RecipientCount() >= MaxNumberOfRecipients {
return fmt.Errorf("recipient limit exceeded (max %d)", MaxNumberOfRecipients)
}
m.to = append(m.to, recipient)
Expand Down

0 comments on commit 9ae7f9f

Please sign in to comment.