mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-10 07:52:55 +01:00
Refactor variable naming in Send method
Renamed variable `cerr` to `err` for consistency. This improves readability and standardizes error variable naming within the method.
This commit is contained in:
parent
277ae9be19
commit
3bdb6f7cca
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@ package mail
|
|||
|
||||
// Send sends out the mail message
|
||||
func (c *Client) Send(messages ...*Msg) error {
|
||||
if cerr := c.checkConn(); cerr != nil {
|
||||
return &SendError{Reason: ErrConnCheck, errlist: []error{cerr}, isTemp: isTempError(cerr)}
|
||||
if err := c.checkConn(); err != nil {
|
||||
return &SendError{Reason: ErrConnCheck, errlist: []error{err}, isTemp: isTempError(err)}
|
||||
}
|
||||
var errs []*SendError
|
||||
for _, message := range messages {
|
||||
|
|
Loading…
Reference in a new issue