Online Documents
English
English
  • First Launch Experience
  • Activate Software License
  • How to Train EMILY?
  • Simple Web Automation
  • Web Automation Tools
  • Web Automation Processor
  • User Fill
  • Workspace Script
  • File Exporter
  • File Enumerator
  • EXCEL Processor
  • EXCEL Analyzer
  • EXCEL Writer
  • EXCEL Filler
  • CSV Creator
  • PowerShell
  • PDF Analyzer
  • Mail Sender
  • Mail Reader
  • Exchange Mail Sender
  • Exchange Mail Reader
  • HTTP Analyzer
  • Command Line
  • DOCX Templater
  • SQL Executor
  • Desktop Automation (DA)
  • SFTP
  • JSON API Server
  • Chart
  • DOCX2HTML
  • Manage Folder
  • Google Drive
  • Google Sheets
  • Google OCR
  • Google NLU
  • Azure Form Recognizer
  • Anti-Captcha
  • ChatGPT
  • Gemini
  • Schedule Trigger
  • Mail Trigger
  • File Trigger
  • API Trigger
  • Protect Text
  • Flexibility & Security
  • Announcements
    • Version Release
    • Third Party Notice
Powered by GitBook
On this page
  • HOST
  • PORT
  • TLS/SSL
  • USERNAME
  • PASSWORD
  • RECIPIENT
  • CC
  • SUBJECT
  • USE HTML
  • MAIL TEMPLATE
  • ATTACHMENT
  • LOW-CODE

Mail Sender

Send emails via SMTP

PreviousPDF AnalyzerNextMail Reader

Last updated 1 year ago

HOST

The SMTP mail server host name, such as smtp.gmail.com.

PORT

The SMTP port number, typically set to 465.

TLS/SSL

Whether the SMTP mail server requires TLS/SSL encryption.

USERNAME

The user name configured in the email server. The %FILENAME% variable can be included to insert the content of the TXT file with the filename named 'FILENAME' inside the workspace, achieving dynamic customization.

PASSWORD

Password for the account filled above. The %FILENAME% variable is also supported.

RECIPIENT

Recipients‘ addresses. If there are multiple recipients, they can be separated by commas, and the %FILENAME% variable is also supported: alice@example.com,bob@example.com,%contact%

CC

CC (Carbon Copy) addresses. Multiple addresses can be separated by commas, as mentioned above.

SUBJECT

Subject of the email, supporting %FILENAME% variable.

USE HTML

Whether the email template uses HTML syntax.

MAIL TEMPLATE

Email content template. If USE HTML is enabled, the template is using HTML syntax, otherwise, it's formatted in plain text. Supports the %FILENAME% variable: <h3>Dear %user%</h3> <p>Thanks for subscribing %serviceName% service.</p>

ATTACHMENT

Attach specified attachments. The format should be a regular expression string: invoice-[0-9]{3}\.jpg

LOW-CODE

Enable script editing. The input object contains the content filled out as described above, and you can make modifications here before sending it.

// Print the filled email content first and make modifications before sending
console.log(input)

input.bcc = 'archive@company.com'

--

We are dedicated to improving our content. Please let us know if you come across any errors, including spelling, grammar, or other mistakes, as your is valuable to us! 🤖️⚡️

feedback