SMTP2GO integration (Communication, Marketing). Imported from open-connector.
https://api.smtp2go.com/v3/email/send
| Param | Type | Required | Description |
|---|---|---|---|
| sender | string | required | The name and email address to send from, such as Sender <sender@example.com>. |
| to | array | required | The email addresses to send to, up to 100 recipients. |
| cc | array | optional | The email addresses to CC, up to 100 recipients. |
| bcc | array | optional | The email addresses to BCC, up to 100 recipients. |
| subject | string | optional | The subject of the email. If template_id is provided, SMTP2GO ignores this valu… |
| html_body | string | optional | The HTML email body. Either html_body or text_body is required when template_id… |
| text_body | string | optional | The plain-text email body. Either html_body or text_body is required when templ… |
| custom_headers | array | optional | Custom headers to add to the email. |
| template_id | string | optional | The SMTP2GO template ID to use for this send. |
| template_data | object | optional | The template variable values passed to SMTP2GO. |
| schedule | string | optional | A future SMTP2GO schedule timestamp within the next three days. |
| fastaccept | boolean | optional | Whether SMTP2GO should accept the email immediately and send it in the backgrou… |
/activity/search
| Param | Type | Required | Description |
|---|---|---|---|
| start_date | string | optional | The inclusive start datetime for the activity search. |
| end_date | string | optional | The exclusive end datetime for the activity search. |
| search | string | optional | A text search across SMTP2GO activity search fields. |
| search_email_id | string | optional | The SMTP2GO email ID to search for. |
| search_subject | string | optional | A subject search string. |
| search_sender | string | optional | A sender search string. |
| search_recipient | string | optional | A recipient search string. |
| search_usernames | array | optional | SMTP2GO usernames to include in the activity search. |
| subaccounts | array | optional | SMTP2GO subaccount IDs to include in the activity search. |
| limit | integer | optional | The maximum number of events to return. |
| continue_token | string | optional | The continuation token from a previous activity search. |
| only_latest | boolean | optional | Whether to return only the most recent event for each email. |
| only_latest_by_sent | boolean | optional | Whether to return the most recent event for each email ordered by sent date. |
| event_types | array | optional | SMTP2GO event types used to filter activity results. |
| include_headers | boolean | optional | Whether to include full email headers in returned events. |
| custom_headers | array | optional | Custom header names to extract from returned raw headers. |
| region | string | optional | The SMTP2GO activity region to query. |
/stats/email_summary
| Param | Type | Required | Description |
|---|---|---|---|
| username | string | optional | The optional SMTP2GO username to return statistics for. |
/domain/view
| Param | Type | Required | Description |
|---|---|---|---|
| domain | string | optional | Only return records for this sender domain. |
| subaccount_id | string | optional | The subaccount ID to query on behalf of. |
/single_sender_emails/view
| Param | Type | Required | Description |
|---|---|---|---|
| email_address | string | optional | Only return single sender emails matching this address. |
| subaccount_id | string | optional | The subaccount ID to query on behalf of. |
/template/search
| Param | Type | Required | Description |
|---|---|---|---|
| fuzzy_search | boolean | optional | Whether search terms should use wildcard matching. |
| search_terms | array | optional | Template search terms matched against name, tag, ID, or subject. |
| tags | array | optional | Template tags used to filter results. |
| sort_direction | string | optional | The template sort direction. |
| page_size | integer | optional | The maximum number of templates to return. |
| continue_token | string | optional | The continuation token from a previous template search. |
/template/view
| Param | Type | Required | Description |
|---|---|---|---|
| id | string | required | The case-sensitive SMTP2GO email template ID. |