Email Trigger
Send email notifications via SMTP.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
smtp_server |
string | ✅ | — | SMTP server address |
smtp_port |
integer | ✅ | 587 | SMTP port |
use_tls |
boolean | ✅ | true | Enable TLS encryption |
username |
string | ✅ | — | SMTP username |
password |
string | ✅ | — | SMTP password |
sender_email |
string | ✅ | — | From email address |
recipient_email |
string | ✅ | — | To email address |
subject |
string | ✅ | — | Email subject |
body |
string | ✅ | — | Email body |
attachment_path |
string | ❌ | — | File attachment path |
Example:
smtp_server: smtp.gmail.comsmtp_port: 587use_tls: trueusername: sender@gmail.compassword: app_passwordsender_email: sender@gmail.comrecipient_email: recipient@example.comsubject: "Scrape Complete: ${project_name}"body: "Your scrape of ${target_url} completed. ${record_count} records extracted."Common SMTP Servers
Section titled “Common SMTP Servers”| Provider | Server | Port |
|---|---|---|
| Gmail | smtp.gmail.com | 587 |
| Outlook/Hotmail | smtp.office365.com | 587 |
| Yahoo | smtp.mail.yahoo.com | 587 |
| Custom | Your mail server | 587 or 465 |