Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

sendtransactionmail

Creates a new recipient and sends an event mailing to this recipient in Optimizely Campaign.

Additional parameters for personalization can be transmitted. You can also send SMS if your client is configured accordingly. In certain cases, this operation can be used to send event mailings several times to already existing recipients.

📘

Notes on using this operation

  • You can use this operation to send mailings to existing recipients.
  • Each call of this operation creates a new recipient dataset.
  • Unsubscribes and bounces are always associated with the ID field (which may be, for example, the email address) of the recipient list used.
  • Use this operation only for confirmation mails, notifications, status mails, or new subscriptions in case recipients forgot their password.
  • Some of these transactional mails must be free of promotional content.
  • This operation is available in the form service.
  • You need a transaction recipient list (recipient list with the property "Transaction API") and its authorization code. See API overview. To set up a transaction recipient list, contact customer support.

❗️

Warning

Never use this HTTP API request directly on a web page. HTTP API requests of the form service must always be executed by the server without exposing the used source code to others. Otherwise there is a potential risk that other web user read these data and send emails from your client and at your expense.

Parameters

NameMandatoryDefault valueDescription
bmRecipientIdyesIf the mailing is of the type email, the parameter must contain the email address of the recipient. If an SMS is sent, the parameter must contain the telephone number of the recipient.
bmMailingIdyesThe ID of the mailing (type: event) to be sent. The mailing must be associated with the same recipient list used by the authorization code.
bmPersonalizedAttachmentsTokennoTo send an attachment, set the value of this parameter to the return value of the operation uploadpersonalizedattachments (i.e., the token). The personalized attachment feature must first be activated by customer support.
bmSanitizenoSet the value of this parameter to true to convert potentially dangerous characters in the supplied recipient data into their respective HTML equivalents .
...noAny parameter that corresponds to a parameter of the recipient list.

Return values

ValueDescription
enqueued: The sending process has been started. Invoke the operation getsendstatus to get sending status details.
not_foundThe transmitted mailing with the given bmMailingId could not be found.
wrong_tagAuthorization failed.
Error codes:
- 501=wrong authentication tag
- 502=wrong request IP
- 503=wrong request method
- 504=wrong protocol
- 505=wrong recipient list
- 506=wrong action
- 507=action not found
If a verification of the authentication tag does not solve the problem, contact customer support.
missing_idNo bmMailingId and/or no bmRecipientId was/were transmitted.
syntax_errorThe transmitted bmRecipientId or another parameter is invalid.
syntax_error: Invalid bmPersonalizedAttachmentsToken.The token is expired, was not created for this client, or has been tampered with.
wrong_mailing_typeThe mailing is not of the type event.
wrong_mailing_type: Personalized attachments can only be used with EMAIL-mailings.Personalized attachments can only be used for mailings of the media type email.
wrong_mailing_statusPersonalized attachments can only be used for mailings of the media type email.
wrong_mailing_statusThe mailing with the given bmMailingId was stopped, is finished or the property of the used recipient list is not Transaction API.
system_errorA general error occurred.

Example 1

.../form/.../sendtransactionmail?bmRecipientId=john.smith%40example.com&bmMailingId=12345 

The mailing with the ID 12345 is sent to the recipient with the ID [email protected]_.

Example 2

.../form/.../sendtransactionmail?bmRecipientId=john.smith%40example.com&
bmMailingId=12345&bmPersonalizedAttachmentsToken=1a2b3c456 

The mailing with the ID 12345 is sent to the recipient with the ID [email protected]_ along with a personalized attachment (using the token 1a2b3c456). For more examples for using the personalized attachments, see Personalized Attachments - Examples.