Create Sender

Create a new sender

Options

Body (*)
sender's name

Request body which must comply to the following JSON Schema:

{
  "required" : [ "email", "name" ],
  "type" : "object",
  "properties" : {
    "name" : {
      "type" : "string",
      "description" : "From Name to use for the sender",
      "example" : "Newsletter"
    },
    "email" : {
      "type" : "string",
      "description" : "From email to use for the sender. A verification email will be sent to this address.",
      "format" : "email",
      "example" : "newsletter@mycompany.com"
    },
    "ips" : {
      "type" : "array",
      "description" : "**Mandatory in case of dedicated IP**. IPs to associate to the sender\n",
      "items" : {
        "required" : [ "domain", "ip" ],
        "type" : "object",
        "properties" : {
          "ip" : {
            "type" : "string",
            "description" : "Dedicated IP available in your account",
            "example" : "123.98.689.7"
          },
          "domain" : {
            "type" : "string",
            "description" : "Domain of the IP",
            "example" : "mycompany.com"
          },
          "weight" : {
            "maximum" : 100.0,
            "minimum" : 1,
            "type" : "integer",
            "description" : "Weight to apply to the IP. Sum of all IP weights must be 100. Should be passed for either ALL or NONE of the IPs. If it's not passed, the sending will be equally balanced on all IPs.",
            "format" : "int64",
            "example" : 50
          }
        }
      }
    }
  }
}
Result Format

Specify how the response should be mapped to the table output. The following formats are available:

Raw Response: Returns the raw response in a single row with the following columns:

  • body: Response body
  • status: HTTP status code

Input Ports

Icon
Configuration data.

Output Ports

Icon
Result of the request depending on the selected Result Format.
Icon
Configuration data (this is the same as the input port; it is provided as passthrough for sequentially chaining nodes to declutter your workflow connections).

Popular Predecessors

  • No recommendations found

Popular Successors

  • No recommendations found

Views

This node has no views

Workflows

  • No workflows found

Links

Developers

You want to see the source code for this node? Click the following button and we’ll use our super-powers to find it for you.