diff --git a/docs/rest_api/emails.rst b/docs/rest_api/emails.rst
new file mode 100644
index 00000000..806c6064
--- /dev/null
+++ b/docs/rest_api/emails.rst
@@ -0,0 +1,772 @@
+Emails
+######
+
+Use this endpoint to obtain details, create, update, or delete Mautic's
+Emails.
+
+.. code-block:: php
+
+ newAuth($settings);
+ $apiUrl = "https://your-mautic.com";
+ $api = new MauticApi();
+ $emailApi = $api->newApi("emails", $auth, $apiUrl);
+
+.. vale off
+
+Get Email
+~~~~~~~~~
+
+.. vale on
+
+.. code-block:: php
+
+ get($id);
+
+.. code-block:: json
+
+ {
+ "email":{
+ "isPublished":true,
+ "dateAdded":"2016-10-25T18:51:17+00:00",
+ "createdBy":1,
+ "createdByUser":"John Doe",
+ "dateModified":null,
+ "modifiedBy":null,
+ "modifiedByUser":null,
+ "id":560,
+ "name":"test",
+ "subject":"API test email",
+ "language":"en",
+ "category":null,
+ "fromAddress":null,
+ "fromName":null,
+ "replyToAddress":null,
+ "bccAddress":null,
+ "customHtml":"
Hi there!<\/h1>",
+ "plainText":null,
+ "template":null,
+ "emailType":"list",
+ "publishUp":null,
+ "publishDown":null,
+ "readCount":0,
+ "sentCount":0,
+ "revision":1,
+ "assetAttachments":[],
+ "variantStartDate":null,
+ "variantSentCount":0,
+ "variantReadCount":0,
+ "variantParent":null,
+ "variantChildren":[],
+ "translationParent":null,
+ "translationChildren":[],
+ "unsubscribeForm":null,
+ "dynamicContent":[
+ {
+ "tokenName":null,
+ "content":null,
+ "filters":[
+ {
+ "content":null,
+ "filters":[
+ {
+ "glue":null,
+ "field":null,
+ "object":null,
+ "type":null,
+ "operator":null,
+ "display":null,
+ "filter":null
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "lists":[
+ {
+ "createdByUser":"John Doe",
+ "modifiedByUser":null,
+ "id":256,
+ "name":"test",
+ "alias":"test29",
+ "description":null
+ }
+ ]
+ }
+ }
+
+Get an individual Email by ID.
+
+HTTP request
+^^^^^^^^^^^^
+
+``GET /emails/ID``
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+See JSON code example.
+
+**Email Properties**
+
++----------------------+--------------+----------------------------------------+
+| Name | Type | Description |
++======================+==============+========================================+
+| ``id`` | int | ID of the Email |
++----------------------+--------------+----------------------------------------+
+| ``name`` | string | Internal name of the Email |
++----------------------+--------------+----------------------------------------+
+| ``subject`` | string | Subject of the Email |
++----------------------+--------------+----------------------------------------+
+| ``fromAddress`` | string | The from Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``fromName`` | string | The from name if it's different than |
+| | | the one in the Mautic configuration |
++----------------------+--------------+----------------------------------------+
+| ``replyToAddress`` | string | The reply to Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``bccAddress`` | string | The BCC Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``isPublished`` | boolean | Available for use state |
++----------------------+--------------+----------------------------------------+
+| ``publishUp`` | datetime/null| Date/time when the Email should be |
+| | | available |
++----------------------+--------------+----------------------------------------+
+| ``publishDown`` | datetime/null| Date/time the Email should be |
+| | | unavailable |
++----------------------+--------------+----------------------------------------+
+| ``dateAdded`` | datetime | Date/time Email was created |
++----------------------+--------------+----------------------------------------+
+| ``createdBy`` | int | ID of the user that created the Email |
++----------------------+--------------+----------------------------------------+
+| ``createdByUser`` | string | Name of the user that created the |
+| | | Email |
++----------------------+--------------+----------------------------------------+
+| ``dateModified`` | datetime/null| Date/time Email was last modified |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``modifiedBy`` | int | ID of the user that last modified the |
+| | | Email |
++----------------------+--------------+----------------------------------------+
+| ``modifiedByUser`` | string | Name of the user that last modified |
+| | | the Email |
++----------------------+--------------+----------------------------------------+
+| ``language`` | string | Language locale of the Email |
++----------------------+--------------+----------------------------------------+
+| ``readCount`` | int | Total Email read count |
++----------------------+--------------+----------------------------------------+
+| ``sentCount`` | int | Total Email sent count |
++----------------------+--------------+----------------------------------------+
+| ``revision`` | int | Email revision |
++----------------------+--------------+----------------------------------------+
+| ``customHtml`` | string | The HTML content of the Email |
++----------------------+--------------+----------------------------------------+
+| ``plainText`` | string | The plain text content of the Email |
++----------------------+--------------+----------------------------------------+
+| ``template`` | string | The name of the template used as the |
+| | | base for the Email |
++----------------------+--------------+----------------------------------------+
+| ``EmailType`` | string | If it is a segment (former list) Email |
+| | | or template Email. Possible values are |
+| | | list and template |
++----------------------+--------------+----------------------------------------+
+| ``translationChildren``| array | Array of Page entities for |
+| | | translations of this landing page |
++----------------------+--------------+----------------------------------------+
+| ``translationParent``| object | The parent/main page if this is a |
+| | | translation |
++----------------------+--------------+----------------------------------------+
+| ``variantSentCount`` | int | Sent count since variantStartDate |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantReadCount`` | int | Read count since variantStartDate |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantChildren`` | array | Array of Email entities for variants |
+| | | of this landing Email |
++----------------------+--------------+----------------------------------------+
+| ``variantParent`` | object | The parent/main Email if this is a |
+| | | variant (A/B test) |
++----------------------+--------------+----------------------------------------+
+| ``variantSettings`` | array | The properties of the A/B test |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantStartDate`` | datetime/null| The date/time the A/B test began |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``category`` | object/null | Category information |
++----------------------+--------------+----------------------------------------+
+| ``unsubscribeForm`` | int | Id of the form displayed in the |
+| | | unsubscribe page |
++----------------------+--------------+----------------------------------------+
+| ``dynamicContent`` | object | Dynamic content configuration |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``lists`` | array | Array of segment IDs which should be |
+| | | added to the segment Email |
++----------------------+--------------+----------------------------------------+
+| ``assetAttachments`` | array | asset IDs Array for Email attachment |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``grapesjsbuilder`` | array | ``customMjml`` key along with MJML |
+| | | content for email based on MJML. |
++----------------------+--------------+----------------------------------------+
+
+List Emails
+~~~~~~~~~~~
+
+.. code-block:: php
+
+ getList($searchFilter, $start, $limit, $orderBy, $orderByDir, $publishedOnly, $minimal);
+
+.. code-block:: json
+
+ {
+ "total": 1,
+ "emails": [
+ {
+ "isPublished":true,
+ "dateAdded":"2016-10-25T18:51:17+00:00",
+ "createdBy":1,
+ "createdByUser":"John Doe",
+ "dateModified":null,
+ "modifiedBy":null,
+ "modifiedByUser":null,
+ "id":560,
+ "name":"test",
+ "subject":"API test email",
+ "language":"en",
+ "category":null,
+ "fromAddress":null,
+ "fromName":null,
+ "replyToAddress":null,
+ "bccAddress":null,
+ "customHtml":"Hi there!<\/h1>",
+ "plainText":null,
+ "template":null,
+ "emailType":"list",
+ "publishUp":null,
+ "publishDown":null,
+ "readCount":0,
+ "sentCount":0,
+ "revision":1,
+ "assetAttachments":[],
+ "variantStartDate":null,
+ "variantSentCount":0,
+ "variantReadCount":0,
+ "variantParent":null,
+ "variantChildren":[],
+ "translationParent":null,
+ "translationChildren":[],
+ "unsubscribeForm":null,
+ "dynamicContent":[
+ {
+ "tokenName":null,
+ "content":null,
+ "filters":[
+ {
+ "content":null,
+ "filters":[
+ {
+ "glue":null,
+ "field":null,
+ "object":null,
+ "type":null,
+ "operator":null,
+ "display":null,
+ "filter":null
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "lists":[
+ {
+ "createdByUser":"John Doe",
+ "modifiedByUser":null,
+ "id":256,
+ "name":"test",
+ "alias":"test29",
+ "description":null
+ }
+ ]
+ }
+ ]
+ }
+
+.. _http-request-1:
+
+HTTP request
+^^^^^^^^^^^^
+
+``GET /emails``
+
+**Query Parameters**
+
++------------------+---------------------------------------------------+
+| Name | Description |
++==================+===================================================+
+| ``search`` | String or search command to filter entities by. |
++------------------+---------------------------------------------------+
+| ``start`` | Starting row for the entities returned. Defaults |
+| | to 0. |
++------------------+---------------------------------------------------+
+| ``limit`` | Limit number of entities to return. Defaults to |
+| | the system configuration for pagination (30). |
++------------------+---------------------------------------------------+
+| ``orderBy`` | Column to sort by. Can use any column listed in |
+| | the response. |
++------------------+---------------------------------------------------+
+| ``orderByDir`` | Sort direction: asc or desc. |
++------------------+---------------------------------------------------+
+| ``publishedOnly``| Only return currently available entities. |
++------------------+---------------------------------------------------+
+| ``minimal`` | Return only array of entities without additional |
+| | lists in it. |
++------------------+---------------------------------------------------+
+
+.. _response-1:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+See JSON code example.
+
+**Properties**
+
+Same as `Get Email <#get-email>`__.
+
+Create Email
+~~~~~~~~~~~~
+
+.. code-block:: php
+
+ 'Email A',
+ 'description' => 'This is my first email created via API.',
+ 'isPublished' => 1
+ );
+
+ $email = $emailApi->create($data);
+
+Create a new Email.
+
+.. _http-request-2:
+
+HTTP request
+^^^^^^^^^^^^
+
+``POST /emails/new``
+
+**Post Parameters**
+
++----------------------+--------------+----------------------------------------+
+| Name | Type | Description |
++----------------------+--------------+----------------------------------------+
+| ``id`` | int | ID of the Email |
++----------------------+--------------+----------------------------------------+
+| ``name`` | string | Internal name of the Email |
++----------------------+--------------+----------------------------------------+
+| ``subject`` | string | Subject of the Email |
++----------------------+--------------+----------------------------------------+
+| ``fromAddress`` | string | The from Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``fromName`` | string | The from name if it's different than |
+| | | the one in the Mautic configuration |
++----------------------+--------------+----------------------------------------+
+| ``replyToAddress`` | string | The reply to Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``bccAddress`` | string | The BCC Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++----------------------+--------------+----------------------------------------+
+| ``isPublished`` | boolean | Available state |
++----------------------+--------------+----------------------------------------+
+| ``publishUp`` | datetime/null| Date/time when the Email should be |
+| | | available |
++----------------------+--------------+----------------------------------------+
+| ``publishDown`` | datetime/null| Date/time the Email should be |
+| | | unavailable |
++----------------------+--------------+----------------------------------------+
+| ``language`` | string | Language locale of the Email |
++----------------------+--------------+----------------------------------------+
+| ``readCount`` | int | Total Email read count |
++----------------------+--------------+----------------------------------------+
+| ``sentCount`` | int | Total Email sent count |
++----------------------+--------------+----------------------------------------+
+| ``revision`` | int | Email revision |
++----------------------+--------------+----------------------------------------+
+| ``customHtml`` | string | The HTML content of the Email |
++----------------------+--------------+----------------------------------------+
+| ``plainText`` | string | The plain text content of the Email |
++----------------------+--------------+----------------------------------------+
+| ``template`` | string | The name of the template used as the |
+| | | base for the Email |
++----------------------+--------------+----------------------------------------+
+| ``emailType`` | string | If it is a segment (former list) Email |
+| | | or template Email. Possible values are |
+| | | list and template |
++----------------------+--------------+----------------------------------------+
+| ``translationChildren``| array | Array of Page entities for |
+| | | translations of this landing page |
++----------------------+--------------+----------------------------------------+
+| ``translationParent``| object | The parent/main page if this is a |
+| | | translation |
++----------------------+--------------+----------------------------------------+
+| ``variantSentCount`` | int | Sent count since variantStartDate |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantReadCount`` | int | Read count since variantStartDate |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantChildren`` | array | Array of Email entities for variants |
+| | | of this landing Email |
++----------------------+--------------+----------------------------------------+
+| ``variantParent`` | object | The parent/main Email if this is a |
+| | | variant (A/B test) |
++----------------------+--------------+----------------------------------------+
+| ``variantSettings`` | array | The properties of the A/B test |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``variantStartDate`` | datetime/null| The date/time the A/B test began |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``category`` | object/null | Category information |
++----------------------+--------------+----------------------------------------+
+| ``unsubscribeForm`` | int | Id of the form displayed in the |
+| | | unsubscribe page |
++----------------------+--------------+----------------------------------------+
+| ``dynamicContent`` | object | Dynamic content configuration |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``lists`` | array | Array of segment IDs which should be |
+| | | added to the segment Email |
++----------------------+--------------+----------------------------------------+
+| ``assetAttachments`` | array | asset IDs Array for Email attachment |
+| | | |
++----------------------+--------------+----------------------------------------+
+| ``grapesjsbuilder`` | array | ``customMjml`` key along with MJML |
+| | | content for email based on MJML. |
++----------------------+--------------+----------------------------------------+
+
+.. _response-2:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 201``
+
+**Properties**
+
+Same as `Get Email <#get-email>`__.
+
+Edit Email
+~~~~~~~~~~
+
+.. code-block:: php
+
+ 'New email title',
+ 'isPublished' => 0
+ );
+
+ // Create new a email of ID 1 is not found?
+ $createIfNotFound = true;
+
+ $email = $emailApi->edit($id, $data, $createIfNotFound);
+
+Edit a new Email. Note that this supports PUT or PATCH depending on the
+desired behavior.
+
+**PUT** creates a Email if the given ID does not exist and clears all
+the Email information, adds the information from the request. **PATCH**
+fails if the Email with the given ID does not exist and updates the
+Email field values with the values form the request.
+
+.. _http-request-3:
+
+HTTP request
+^^^^^^^^^^^^
+
+To edit a Email and return a 404 if the Email is not found:
+
+``PATCH /emails/ID/edit``
+
+To edit a Email and create a new one if the Email is not found:
+
+``PUT /emails/ID/edit``
+
+**Post Parameters**
+
++------------------------+--------------+----------------------------------------+
+| Name | Type | Description |
++------------------------+--------------+----------------------------------------+
+| ``id`` | int | ID of the Email |
++------------------------+--------------+----------------------------------------+
+| ``name`` | string | Internal name of the Email |
++------------------------+--------------+----------------------------------------+
+| ``subject`` | string | Subject of the Email |
++------------------------+--------------+----------------------------------------+
+| ``fromAddress`` | string | The from Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++------------------------+--------------+----------------------------------------+
+| ``fromName`` | string | The from name if it's different than |
+| | | the one in the Mautic configuration |
++------------------------+--------------+----------------------------------------+
+| ``replyToAddress`` | string | The reply to Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++------------------------+--------------+----------------------------------------+
+| ``bccAddress`` | string | The BCC Email address if it's |
+| | | different than the one in the Mautic |
+| | | configuration |
++------------------------+--------------+----------------------------------------+
+| ``isPublished`` | boolean | Available state |
++------------------------+--------------+----------------------------------------+
+| ``publishUp`` | datetime/null| Date/time when the Email should be |
+| | | available |
++------------------------+--------------+----------------------------------------+
+| ``publishDown`` | datetime/null| Date/time the Email should be |
+| | | unavailable |
++------------------------+--------------+----------------------------------------+
+| ``language`` | string | Language locale of the Email |
++------------------------+--------------+----------------------------------------+
+| ``readCount`` | int | Total Email read count |
++------------------------+--------------+----------------------------------------+
+| ``sentCount`` | int | Total Email sent count |
++------------------------+--------------+----------------------------------------+
+| ``revision`` | int | Email revision |
++------------------------+--------------+----------------------------------------+
+| ``customHtml`` | string | The HTML content of the Email |
++------------------------+--------------+----------------------------------------+
+| ``plainText`` | string | The plain text content of the Email |
++------------------------+--------------+----------------------------------------+
+| ``template`` | string | The name of the template used as the |
+| | | base for the Email |
++------------------------+--------------+----------------------------------------+
+| ``emailType`` | string | If it is a segment (former list) Email |
+| | | or template Email. Possible values are |
+| | | list and template |
++------------------------+--------------+----------------------------------------+
+| ``translationChildren``| array | Array of Page entities for |
+| | | translations of this landing page |
++------------------------+--------------+----------------------------------------+
+| ``translationParent`` | object | The parent/main page if this is a |
+| | | translation |
++------------------------+--------------+----------------------------------------+
+| ``variantSentCount`` | int | Sent count since variantStartDate |
+| | | |
++------------------------+--------------+----------------------------------------+
+| ``variantReadCount`` | int | Read count since variantStartDate |
+| | | |
++------------------------+--------------+----------------------------------------+
+| ``variantChildren`` | array | Array of Email entities for variants |
+| | | of this landing Email |
++------------------------+--------------+----------------------------------------+
+| ``variantParent`` | object | The parent/main Email if this is a |
+| | | variant (A/B test) |
++------------------------+--------------+----------------------------------------+
+| ``variantSettings`` | array | The properties of the A/B test |
+| | | |
++------------------------+--------------+----------------------------------------+
+| ``variantStartDate`` | datetime/null| The date/time the A/B test began |
+| | | |
++------------------------+--------------+----------------------------------------+
+| ``category`` | object/null | Category information |
++------------------------+--------------+----------------------------------------+
+| ``unsubscribeForm`` | int | Id of the form displayed in the |
+| | | unsubscribe page |
++------------------------+--------------+----------------------------------------+
+| ``dynamicContent`` | object | Dynamic content configuration |
+| | | |
++------------------------+--------------+----------------------------------------+
+| ``lists`` | array | Array of segment IDs which should be |
+| | | added to the segment Email |
++------------------------+--------------+----------------------------------------+
+
+.. _response-3:
+
+Response
+^^^^^^^^
+
+If ``PUT``, the expected response code is ``200`` if the Email was
+edited or ``201`` if created.
+
+If ``PATCH``, the expected response code is ``200``.
+
+**Properties**
+
+Same as `Get Email <#get-email>`__.
+
+Delete Email
+~~~~~~~~~~~~
+
+.. code-block:: php
+
+ delete($id);
+
+Delete a email.
+
+.. _http-request-4:
+
+HTTP request
+^^^^^^^^^^^^
+
+``DELETE /emails/ID/delete``
+
+.. _response-4:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+**Properties**
+
+Same as `Get Email <#get-email>`__.
+
+Send Email to Contact
+~~~~~~~~~~~~~~~~~~~~~
+
+.. code-block:: php
+
+ sendToContact($emailId, $contactId);
+
+Send a predefined Email to existing contact.
+
+Assets can be referenced for attaching documents (either ids of existing
+assets or ids returned by the `Create
+Asset `__).
+
+.. _http-request-5:
+
+HTTP request
+^^^^^^^^^^^^
+
+``POST /emails/ID/contact/CONTACT_ID/send``
+
+**Post Parameters**
+
+================ ===== ========================
+Name Type Description
+================ ===== ========================
+tokens array Array of tokens in Email
+assetAttachments array Array of asset ids
+================ ===== ========================
+
+.. _response-5:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+**Properties**
+
+.. code-block:: json
+
+ {
+ "success": 1
+ }
+
+Send Email to Segment
+~~~~~~~~~~~~~~~~~~~~~
+
+.. code-block:: php
+
+ send($id);
+
+Send a segment Email to linked segment(s).
+
+.. _http-request-6:
+
+HTTP request
+^^^^^^^^^^^^
+
+``POST /emails/ID/send``
+
+.. _response-6:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+**Properties**
+
+.. code-block:: json
+
+ {
+ "success": 1,
+ "sentCount": 1,
+ "failedCount": 0
+ }
+
+Create a reply to a send Email send row
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+This endpoint can create a record that a specific Email stat row
+received a reply. It will also mark an Email send stat as read.
+
+.. _http-request-7:
+
+HTTP request
+^^^^^^^^^^^^
+
+``POST /emails/reply/TRACKING_HASH``
+
+Tracking hash is created as unique hash for each Email send stat record.
+
+.. _response-7:
+
+Response
+^^^^^^^^
+
+``Expected Response Code: 200``
+
+**Properties**
+
+.. code-block:: json
+
+ {
+ "success": 1,
+ }
\ No newline at end of file