---
title: "Send Email"
description: "Local-first visual environment for building and running AI workflows. Build agents visually, deploy anywhere, privacy by design."
canonical: https://docs.nodetool.ai/nodes/lib/mail/sendemail
markdown: https://docs.nodetool.ai/nodes/lib/mail/sendemail.md
product: NodeTool
source: https://github.com/nodetool-ai/nodetool/blob/main/docs/nodes/lib/mail/sendemail.md
---

# Send Email

**Type:** `lib.mail.SendEmail`

**Namespace:** `lib.mail`

## Description

Send a plain text email via SMTP.
    email, smtp, send

    Use cases:
    - Send simple notification messages
    - Automate email reports

## Properties

| Property | Type | Description | Default |
|----------|------|-------------|---------|
| smtp_server | `str` | SMTP server hostname | `smtp.gmail.com` |
| smtp_port | `int` | SMTP server port | `587` |
| username | `str` | SMTP username | `` |
| password | `str` | SMTP password | `` |
| from_address | `str` | Sender email address | `` |
| to_address | `str` | Recipient email address | `` |
| subject | `str` | Email subject | `` |
| body | `str` | Email body | `` |

## Outputs

| Output | Type | Description |
|--------|------|-------------|
| output | `bool` |  |

## Related Nodes

Browse other nodes in the [lib.mail](./) namespace.
