Refactor SMTPAuthType comment for clarity

Updated the comment for SMTPAuthType to more clearly explain its purpose as a type wrapper for SMTP authentication mechanisms. This improves code readability and helps future developers understand the type's function.
This commit is contained in:
Winni Neessen 2024-10-04 19:45:37 +02:00
parent e8739b88b0
commit ea90352ef4
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -6,7 +6,8 @@ package mail
import "errors"
// SMTPAuthType represents a string to any SMTP AUTH type
// SMTPAuthType is a type wrapper for a string type. It represents the type of SMTP authentication
// mechanism to be used.
type SMTPAuthType string
const (