From 315ea3b7bff56b7f1eb9175dfe5296bb08ea2ee6 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Fri, 16 Jan 2026 11:55:37 +0900 Subject: [PATCH] GH-48861: [CI] Fix wrong `smtplib.SMTP.send_message` usage --- dev/archery/archery/crossbow/reports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/archery/archery/crossbow/reports.py b/dev/archery/archery/crossbow/reports.py index a2c0487a2b1..1c6510ea4f3 100644 --- a/dev/archery/archery/crossbow/reports.py +++ b/dev/archery/archery/crossbow/reports.py @@ -264,7 +264,7 @@ def send_email(cls, smtp_user, smtp_password, smtp_server, smtp_port, smtp.starttls() smtp.login(smtp_user, smtp_password) message = report.render() - smtp.send_message(smtp_user, report.recipient_email, message) + smtp.send_message(message) @classmethod def write_csv(cls, report, add_headers=True):