simonsfoundation/Send Failure Email via SMTP
Send email via SMTP — plain text, HTML, or with attachments
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| server_address | SMTP server hostname | yes | — |
| server_port | SMTP server port | no | 587 |
| secure | Use TLS (true = direct TLS on port 465, false = STARTTLS) | no | false |
| username | SMTP auth username | no | — |
| password | SMTP auth password | no | — |
| subject | Email subject | yes | — |
| to | Recipient email addresses, comma-separated | yes | — |
| from | FROM address, e.g. "Display Name <user@example.com>" or just "user@example.com" | yes | — |
| envelope_from | Envelope FROM address (for bounces/SPF). Defaults to from if not set. | no | — |
| reply_to | Reply-To address | no | — |
| cc | CC recipients, comma-separated | no | — |
| bcc | BCC recipients, comma-separated | no | — |
| body | Plain text email body | no | — |
| html_body | HTML email body. If both body and html_body are set, sends multipart message. | no | — |
| attachments | File paths to attach, comma-separated. Supports glob patterns. | no | — |
| ignore_cert | Ignore TLS certificate errors (not recommended in production) | no | false |
| priority | Email priority: high, normal, or low | no | normal |
Outputs
| name | description |
|---|---|
| result | Result message from the SMTP server |