From e7b3e76f72190d81b7dd8c1c8d2d404b192d1f3b Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 5 Oct 2023 12:45:58 +0200 Subject: Upgrade dependencies --- plugins/base/smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/base') diff --git a/plugins/base/smtp.go b/plugins/base/smtp.go index 7bb5ccd..8892cae 100644 --- a/plugins/base/smtp.go +++ b/plugins/base/smtp.go @@ -205,7 +205,7 @@ func sendMessage(c *smtp.Client, msg *OutgoingMessage) error { return fmt.Errorf("parsing 'To' address failed: %v", err) } - if err := c.Rcpt(addr.Address); err != nil { + if err := c.Rcpt(addr.Address, nil); err != nil { return fmt.Errorf("RCPT TO failed: %v (%s)", err, addr.Address) } } -- cgit v1.2.3-59-g8ed1b