We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0bfa0 commit 9658b06Copy full SHA for 9658b06
camel/toolkits/imap_mail_toolkit.py
@@ -477,7 +477,8 @@ def send_email(
477
logger.info(
478
"Email sent successfully to %s", ", ".join(to_recipients)
479
)
480
- return "Email sent successfully. Message ID: Unknown"
+ return f"Email sent successfully. To recipients: " \
481
+ f"{', '.join(to_recipients)}"
482
483
except (ConnectionError, smtplib.SMTPException) as e:
484
logger.error("Error sending email: %s", e)
0 commit comments