mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-21 21:30:50 +01:00
Merge 1fc030afe4
into 0d906e21ac
This commit is contained in:
commit
c99b6e24c5
1 changed files with 6 additions and 0 deletions
|
@ -133,6 +133,10 @@ func (e *SendError) Is(errType error) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
func (e *SendError) Unwrap() []error {
|
||||
return e.errlist
|
||||
}
|
||||
|
||||
// IsTemp returns true if the delivery error is of a temporary nature and can be retried.
|
||||
//
|
||||
// This function checks whether the SendError indicates a temporary error, which suggests
|
||||
|
@ -224,3 +228,5 @@ func (r SendErrReason) String() string {
|
|||
func isTempError(err error) bool {
|
||||
return err.Error()[0] == '4'
|
||||
}
|
||||
|
||||
var _ interface{ Unwrap() []error } = &SendError{}
|
||||
|
|
Loading…
Reference in a new issue