## Send a raw MIME email message. `client.emailSending.sendRaw(EmailSendingSendRawParamsparams, RequestOptionsoptions?): EmailSendingSendRawResponse` **post** `/accounts/{account_id}/email/sending/send_raw` Send a raw MIME email message. ### Parameters - `params: EmailSendingSendRawParams` - `account_id: string` Path param: Identifier of the account. - `from: string` Body param: Sender email address. - `mime_message: string` Body param: The full MIME-encoded email message. Should include standard RFC 5322 headers such as From, To, Subject, and Content-Type. The from and recipients fields in the request body control SMTP envelope routing; the From and To headers in the MIME message control what the recipient's email client displays. - `recipients: Array` Body param: List of recipient email addresses. ### Returns - `EmailSendingSendRawResponse` - `delivered: Array` Email addresses to which the message was delivered immediately. - `permanent_bounces: Array` Email addresses that permanently bounced. - `queued: Array` Email addresses for which delivery was queued for later. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const response = await client.emailSending.sendRaw({ account_id: 'account_id', from: 'sender@example.com', mime_message: 'From: sender@example.com\r\nTo: recipient@example.com\r\nSubject: Hello\r\nContent-Type: text/plain\r\n\r\nHello, World!', recipients: ['recipient@example.com'], }); console.log(response.delivered); ``` #### Response ```json { "errors": [ { "code": 0, "message": "message" } ], "messages": [ { "code": 0, "message": "message" } ], "result": { "delivered": [ "recipient@example.com" ], "permanent_bounces": [ "dev@stainless.com" ], "queued": [ "dev@stainless.com" ] }, "success": true, "result_info": { "count": 0, "per_page": 0, "total_count": 0, "cursor": "cursor", "page": 0 } } ```