An overview of the transactional email feature in HubSpot.
Method | Overview | Example use case |
---|---|---|
In-app transactional Email | Create transactional emails using HubSpot’s email editor.This provides the same benefits of standard HubSpot emails, such as smart content, personalization and templates.Learn more about setting up transactional emails in-app. | Send a policy update email to your customers with a link to a new policy page. This is a service update, not a marketing email, so you don’t need to include subscription links (e.g CAN-SPAM links). You don’t need to use any custom properties or info from external systems. |
SMTP API | Send transactional email through your own site or app while also tracking email performance and create contact information within HubSpot. The optional ability to create contact information is based on the smtp token creation.Learn more in SMTP API section below | Send an account signup confirmation email from a separate transactional email system, while also tracking email performance and creating contacts in HubSpot. |
Single-send API | A combination of in-app transactional email and SMTP API. Create transactional emails using HubSpot’s email editor, and add custom external tokens to your email which you can send to HubSpot via the API. Learn more in the single-send API section below. | Send a purchase receipt email to your customer using HubSpot. The email is triggered when the purchase is made, and passes custom values from another system (e.g. purchased item and purchase total). In addition, track the performance of this email in HubSpot. |
POST
request to /marketing/v3/transactional/smtp-tokens/
.
The request body must be a JSON-formatted object with the following properties:
createContact
: indicates whether a contact should be created for email recipients.campaignName
: a name for the campaign associated with the SMTP API token.id
: username to log into the HubSpot SMTP server.createdBy
: email address of the user that sent the token creation request.password
: the password for logging in to the HubSpot SMTP server.emailCampaignId
: identifier assigned to the campaign provided in the token creation request.createdAt
: timestamp generated when a token is created.createContact
: indicates whether a contact should be created for email recipients.campaignName
: the name of the campaign associated with the token.id
and password
values.
A token’s password can only be retrieved at the time of creation. If you lose the password, or want to set a new password, you’ll need to reset the token’s password.
GET
request to /marketing/v3/transactional/smtp-tokens
.
You’ll also need to include either a campaignName
or emailCampaignId
parameter with the request. You can find all request details in the transactional email endpoint reference documentation.
Response details
The response contains results
and paging
as its top-level fields:
results
: a collection of SmtpApiTokenView
containing:
id
: username to log into the HubSpot SMTP server.createdBy
: email address of the user that sent the token creation request.emailCampaignId
: identifier assigned to the campaign provided in the token creation request.createdAt
: timestamp generated when a token is created.createContact
: indicates whether a contact should be created for email recipients.campaignName
: the name of the campaign associated with the token.paging
: contains a next.after
field that can be used to request more results.GET
request to /marketing/v3/transactional/smtp-tokens/{tokenId}
.
Response details:
The response includes SmtpApiTokenView
, which contains:
id
: username to log into the HubSpot SMTP server.createdBy
: email address of the user that sent the token creation request.emailCampaignId
: identifier assigned to the campaign provided in the token creation request.createdAt
: timestamp generated when a token is created.createContact
: indicates whether a contact should be created for email recipients.campaignName
: the name of the campaign associated with the token./marketing/v3/transactional/smtp-tokens/{tokenId}/password-reset
.
The response includes SmtpApiTokenView
, which contains:
id
: username to log into the HubSpot SMTP server.createdBy
: email address of the user that sent the token creation request.emailCampaignId
: identifier assigned to the campaign provided in the token creation request.createdAt
: timestamp generated when a token is created.createContact
: indicates whether a contact should be created for email recipients.campaignName
: the name of the campaign associated with the token./marketing/v3/transactional/smtp-tokens/{tokenId}
.
The response does not include any content.
id
) and password provided by your token.
smtp.hubapi.com
for the hostname.smtp-eu1.hubapi.com
for the hostname.POST
request. Any emails sent through this API will be automatically associated with contact records based on email address. If there’s no contact with a matching email address, a new contact with that email will be created. If you want to send emails without creating contacts, use the SMTP API.
/
) in the URL (e.g., https://app.hubspot.com/email/{PORTAL_ID}/edit/{EMAIL_ID}/settings
).POST
request to /marketing/v3/transactional/single-email/send
.
The response contains the following fields:
requestedAt
: the timestamp of when the send was requested.
statusId
: an identifier that can be used to query the status of the send.
status
: the status of the send request. Includes PENDING
, PROCESSING
, CANCELED
, and COMPLETE
.
emailId
message
contactProperties
customProperties
emailId
field contains the transactional email’s content ID, which can be found in HubSpot’s email tool.
to
field.
Message object fields:
to
: the recipient of the emailfrom
: the “From” header for the email. You can define a from name with the following format: "from":"Sender Name <sender@hubspot.com>"
sendId
: the ID of a particular send. Only one email with a given sendId
will be sent per account, so you can include this field to prevent duplicate email sends.replyTo
: a JSON list of “Reply-To” header values for the email.cc
: a JSON list of email addresses to send as Cc.bcc
: a JSON list of email addresses to send as Bcc.contactProperties
field is a JSON map of contact property values. Each contact property value contains a name
and value
. Each property will be set on the contact record and will be visible in the template under:
last_paid_date
property, as the sending of the receipt will have information about the last payment.
customProperties
field is a JSON map of key-value properties. These properties are generally related to the email itself, not the contact receiving the email. They will not appear in the web page version of the email, or in the view of the email from the contact’s timeline. These properties are also not stored in HubSpot and will only be included in the sent email.
Each key in the customProperties
field can be referenced in the template using a HubL expression for fields contained within the custom
variable (e.g., {{ custom.NAME_OF_PROPERTY }}
).
For example, if your email template references two properties, purchaseUrl
and productName
, you could provide the associated values for these properties with the following request body:
customProperties
field only supports arrays when used with programmable email content. In your email template, you can reference the items defined in your customProperties
field by using a HubL expression (e.g., using a for loop to render each item in a list). For example, if the customProperties
you included in your request body was structured like the following JSON snippet below:
exampleArray
with the following HubL code:
customProperties
, accessing nested object fields from directly within customProperties
is not supported.For example, if you defined a nested_object
field within customProperties
that included a title
property, nothing will render if you attempt to access customProperties.nested_object.title
.GET
request to https://api.hubapi.com/marketing/v3/email/send-statuses/{statusId}
.
The response contains the following fields:
sendResult
: an enumeration that represents the email’s send status. The possible values are listed below.
requestedAt
: the timestamp from when the send was requested.
startedAt
: the timestamp when the send began processing.
completedAt
: the timestamp when the send completed.
statusId
: an identifier that can be used to query the status of the send.
status
: the status of the send request. Includes PENDING
, PROCESSING
, CANCELED
, and COMPLETE
.
eventId
: if sent, the ID and created timestamp of the sent event.
sendResult
is an enumeration that reflects the result of an email send attempt. Its possible values are:
SENT
: the email was sent successfully.QUEUED
: the email was queued and will send as the queue gets processed.PORTAL_SUSPENDED
: due to Acceptable Use Policy violations, the HubSpot customer’s email has been suspended.INVALID_TO_ADDRESS
: the recipient address is invalid. This error will also occur if you attempt to send an email with any of the following role-based prefixes in the email address: abuse
, no-reply
, noreply
, root
, spam
, security
, undisclosed-recipients
, unsubscribe
, inoc
, postmaster
, or privacy
.BLOCKED_DOMAIN
: the domain cannot receive emails from HubSpot at this time.PREVIOUSLY_BOUNCED
: the recipient has previously bounced, and the sending logic resulted in no send.PREVIOUS_SPAM
: the recipient has previously marked similar email as spam.INVALID_FROM_ADDRESS
: the From address is invalid.MISSING_CONTENT
: the emailId
is invalid, or the emailId
corresponds to an email that wasn’t set up for Single-Send.MISSING_TEMPLATE_PROPERTIES
: there are properties set up in the template that have not been included in the customProperties
sent in the request.