Send Email icon

Send Email

Sends an email using SMTP2 protocol

Overview

This node sends an email using the SMTP2 protocol. It is useful for automating email notifications, alerts, or any scenario where sending emails programmatically is required, such as sending reports, confirmations, or updates.

Use Case Examples

  1. Sending a welcome email to new users after registration.
  2. Automating alert emails when a system event occurs.
  3. Sending periodic reports via email.

Output

JSON

  • messageId - The unique identifier of the sent email message.
  • accepted - List of recipients that accepted the email.
  • rejected - List of recipients that rejected the email.
  • response - The response from the SMTP server after sending the email.

Dependencies

  • Requires SMTP2 protocol support and configuration, including SMTP server credentials such as username, password, host, and port.

Troubleshooting

  • Ensure SMTP server credentials are correctly configured to avoid authentication errors.
  • Check network connectivity to the SMTP server to prevent connection timeouts.
  • Verify recipient email addresses to avoid rejection errors from the SMTP server.

Discussion