POST
/
api
/
v1
/
mail
cURL
curl --request POST \
  --url https://saas.pads365.com/rdx/nds.services.email/api/v1/mail \
  --header 'Content-Type: application/json' \
  --data '{
  "Message": {
    "To": [
      {
        "Email": "<string>",
        "Name": "<string>"
      }
    ],
    "CC": [
      {
        "Email": "<string>",
        "Name": "<string>"
      }
    ],
    "BCC": [
      {
        "Email": "<string>",
        "Name": "<string>"
      }
    ],
    "Subject": "<string>",
    "Content": "<string>",
    "From": {
      "Email": "<string>",
      "Name": "<string>"
    },
    "Attachments": [
      {
        "Data": "aSDinaTvuI8gbWludGxpZnk=",
        "Type": 0,
        "Name": "<string>",
        "ContentType": "<string>",
        "ContentId": "<string>"
      }
    ]
  },
  "Domain": "<string>"
}'
{
  "Succeeded": true,
  "Message": "<string>",
  "Code": "<string>",
  "SendResult": {
    "Id": "<string>",
    "TimeStamp": "2023-11-07T05:31:56Z"
  }
}

Body

application/json

Response

200 - application/json

The response is of type object.