Overview
SMTP Provider allows you to send emails from Keep. Most of the email services like Gmail, Yahoo, Mailgun, etc. provide SMTP servers to send emails. You can use these SMTP servers to send emails from Keep. The SMTP provider supports both plain text and HTML-formatted emails, allowing you to create rich, styled email notifications.Authentication
This provider requires authentication.- smtp_server: SMTP Server Address (required: True, sensitive: False)
- smtp_port: SMTP port (required: True, sensitive: False)
- encryption: SMTP encryption (required: True, sensitive: False)
- smtp_username: SMTP username (required: False, sensitive: False)
- smtp_password: SMTP password (required: False, sensitive: True)
- send_email: Send email using SMTP protocol (mandatory)
In workflows
This provider can be used in workflows. As “action” to make changes or update data, example:Connecting with SMTP Provider
- Obtain the SMTP credentials from your email service provider. Example: Gmail, Yahoo, Mailgun, etc.
- Add SMTP Provider in Keep with the obtained credentials.
- Connect the SMTP Provider with Keep.
Email Format Support
The SMTP provider supports two email formats:Plain Text Emails
Use thebody
parameter to send plain text emails:
HTML Emails
Use thehtml
parameter to send HTML-formatted emails:
body
and html
are provided, the HTML content takes precedence.