From dd3670a9b7a50e5a45494aeeb03cadc03ec9d82f Mon Sep 17 00:00:00 2001
From: LiNEX GIT <nxgitadmin@noreply.linex.vn>
Date: Tue, 11 Jun 2024 15:13:47 +0700
Subject: [PATCH] Update 'Send a raw RFC2882 message'

---
 Send-a-raw-RFC2882-message.md | 43 +++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 Send-a-raw-RFC2882-message.md

diff --git a/Send-a-raw-RFC2882-message.md b/Send-a-raw-RFC2882-message.md
new file mode 100644
index 0000000..64a9e0d
--- /dev/null
+++ b/Send-a-raw-RFC2882-message.md
@@ -0,0 +1,43 @@
+Send a raw RFC2882 message
+==========================
+
+This action allows you to send us a raw RFC2822 formatted message along with the recipients that it should be sent to. This is similar to sending a message through our SMTP service.
+
+URL
+---
+
+`/api/v1/send/raw`
+
+Access
+------
+
+Must be authenticated as a server. If not authorised, an `AccessDenied` error will be returned.
+
+Parameters
+----------
+
+| Parameter | Type | Default |
+| --- | --- | --- |
+| mail_from  | String | null |
+| _The address that should be logged as sending the message_ | |
+| `rcpt_to` | Array | null |
+|_The addresses this message should be sent to_ | |
+| `data` | String | null |
+|_A base64 encoded RFC2822 message to send_ | |
+| `bounce` | Boolean | null |
+|_Is this message a bounce?_| |
+
+
+Errors
+------
+
+| Error | Attributes |
+| --- | --- |
+| `UnauthenticatedFromAddress` |  |
+|_The From address is not authorised to send mail from this server_| |
+
+
+Response Data
+-------------
+
+This action will return a Hash.
\ No newline at end of file