POST
POST
MailjetMailjetSend EmailsSend message v3
POST
https://api.lowcodeapi.com/mailjet/v3/send
Request Body
Content Type : application/json
Request Parameters
FromEmailstring
Specifies the sender email address
FromNamestring
Sender name that will be displayed in the recipient's mailbox
Senderboolean
sender email address will be used to send the message,
Recipientsarray
A json array containing the list of recipients,
Tostring
The email address (and name, optionally) of the recipients
Ccstring
A json array containing the list of recipients,
Bccstring
The email address of a recipient who is supposed to receive a blind carbon copy of this message.
Subjectstring
The email subject line
Text-partstring
Provides the Text part of the message
Html-partstring
Provides the HTML part of the message
Attachmentsarray
A json object containing descriptions of the files attached to this message
Mj-TemplateIDnumber
The Template ID or Name to use as this email content
Mj-TemplateLanguageboolean
When true, activates the template language processing
Mj-TemplateErrorReportingstring
An email address, where a carbon copy with the error message is sent to in case of sending issues
Mj-TemplateErrorDeliverstring
Defines if the message will be delivered if an error is discovered in the templating language
inline_attachmentsarray
A json object containing descriptions of the files attached to this message
Mj-prionumber
Indicates the processing priority inside your account (API Key) scheduling queue
Mj-campaignstring
Specifies a custom campaign name, to which all messages with this property value will be assigned
Mj-deduplicatecampaignnumber
Enables or disables the option to send messages from the same campaign to the same contact multiple times
Mj-trackopennumber
Enable or disable open tracking on this message
Mj-CustomIDstring
Select a user-defined custom ID
Mj-EventPayloadstring
Defines a payload attached to the message
Headersobject
A JSON object containing additional email headers
Varsobject
A JSON object containing variables used to modify the content of your email.
Overview

Send a message via Send API v3

API Reference Link
https://dev.mailjet.com/email/reference/send-emails#v3_post_send
Response
API response data will be shown here once the request is completed.
Snippet
cURL
curl -X POST \
 'https://api.lowcodeapi.com/mailjet/v3/send' \
 -H 'Cache-Control: no-cache' \
 -H 'Content-Type: application/json' --data-raw '{
  "FromEmail": "",
  "FromName": "",
  "Sender": "",
  "Recipients": [
    {
      "Email": "",
      "Name": ""
    }
  ],
  "To": "",
  "Cc": "",
  "Bcc": "",
  "Subject": "",
  "Text-part": "",
  "Html-part": "",
  "Attachments": [],
  "Mj-TemplateID": "",
  "Mj-TemplateLanguage": "",
  "Mj-TemplateErrorReporting": "",
  "Mj-TemplateErrorDeliver": "",
  "inline_attachments": [],
  "Mj-prio": "",
  "Mj-campaign": "",
  "Mj-deduplicatecampaign": "",
  "Mj-trackopen": "",
  "Mj-CustomID": "",
  "Mj-EventPayload": "",
  "Headers": {},
  "Vars": {}
}'
© 2024LowCodeAPI

Last Updated : 2024-12-16 14:03 +00:00