Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
4 changes: 4 additions & 0 deletions source/API_Reference/Marketing_Emails_API/sender_address.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Create a new Address.
{% parameter 'email' 'Yes' 'Email address format, complying with [RFC 5322](http://tools.ietf.org/html/rfc5322)' 'Specify the email address to be used for this Address.' %}
{% parameter 'replyto' 'No' 'Email address format, complying with [RFC 5322](http://tools.ietf.org/html/rfc5322)' 'Specify an email address to be used in the Reply-To field. If not defined, will default to the *email* parameter.' %}
{% parameter 'address' 'Yes' 'None' 'Specify the physical address to be used for this Address.' %}
{% parameter 'city' 'Yes' 'None' 'Specify the city to be used for this Address.' %}
{% parameter 'state' 'Yes' 'None' 'Specify the state to be used for this Address.' %}
{% parameter 'zip' 'Yes' 'None' 'Specify the zipcode/postal code to be used for this Address.' %}
{% parameter 'country' 'Yes' 'None' 'Specify the country to be used for this Address.' %}
{% endparameters %}


Expand Down
6 changes: 2 additions & 4 deletions source/API_Reference/Marketing_Emails_API/variations.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Create a new Variation.
{% parameter 'variation' 'Yes' 'None' 'The name of the Variation you will be adding.' %}
{% parameter 'subject' 'Yes' 'None' 'The subject that will be used for the Variation being created.' %}
{% parameter 'text' 'Yes' 'None' 'The text portion of the Marketing Email Variation being added.' %}
{% parameter 'html' 'No' 'If the <code>type</code> parameter is set to "html" this parameter is required.' 'The html portion of the Marketing Email Variation being added.' %}
{% parameter 'html' 'Yes' 'None' 'The html portion of the Marketing Email Variation being added.' %}
{% parameter 'type' 'Yes' 'Value must be either "text" or "html".' 'The Variation type, either plain text, or multipart-alternative text and html.' %}
{% parameter 'identity_name' 'No' 'Must be an existing Marketing Email Identity' 'Identity name that is needed if the Marketing Email name does not already exist. Will be used to create a parent Marketing Email.' %}
{% endparameters %}
Expand Down Expand Up @@ -191,9 +191,7 @@ Retrieve a list of all Variations attached to a Marketing Email.

{% apiexample list POST https://api.sendgrid.com/api/newsletter/variations/list api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=existing_draft&variation=variation_to_find %}
{% response json %}
{
"message": "success"
}
[{"name": "copy of SUZ5PT"},{"name": "5XZyGo"}]
{% endresponse %}
{% response xml %}
<result>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The Template Engine API lets you programmatically create and manage
templates for your transactional email.

{% info %}
Each user can have up to 100 templates.
Each user can have up to 300 templates.
{% endinfo %}

* * * * *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To set which version is active, use the [version PATCH]({{root_url}}/API_Referen
active field to 1.

{% info %}
Each user can have up to 100 versions across all templates.
Each user can have up to 300 versions across all templates.
{% endinfo %}

* * * * *
Expand Down
21 changes: 21 additions & 0 deletions source/API_Reference/Webhooks/event.md
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,28 @@ For emails sent through our Marketing Email tool, unsubscribes will look like th
}
]
{% endcodeblock %}
{% anchor h2 %}
IP Pools
{% endanchor %}

For emails sent with a specified IP Pool, you can view the IP Pool used in the event post for a processed event.

{% codeblock lang:json %}
[
{
"email": "[email protected]",
"smtp-id": "<14c583da911.2c36.1c804d@ismtpd-073>",
"timestamp": 1427409578,
"pool": {
"name": "new_MY_test",
"id": 210
},
"sg_event_id": "RHFZB1IrTD2Y9Q7bUdZxUw",
"sg_message_id": "14c583da911.2c36.1c804d.filter-406.22375.55148AA99.0",
"event": "processed"
}
]
{% endcodeblock %}

{% anchor h2 %}
Troubleshooting
Expand Down