🚀 Welcome! Spot an issue or have feedback? Let us know.
curl --location --request POST 'https://api.parseur.com/email' \
--header 'Content-Type: application/json' \
--data-raw '{
"subject": "The title of your document, or email subject",
"from": "Sender Name <sender.name@example.com>",
"recipient": "test.api@in.dev.parseur.com",
"to": "to.name@example.com, Another Name <another.name@example.com>",
"cc": "cc.name@example.com",
"bcc": "other.mailbox@in.parseur.com",
"body_html": "<html><body>Document content as HTML. This one has priority over text content if both are present.</body></html>",
"body_plain": "Document content as text. This one is only used if body_html is empty.",
"message_headers": [
[
"Standard-SMTP-Header",
"Any usual email header goes here"
]
]
}'
{
"message": "OK"
}