Send Email API
How to send emails via Postman's email API
Overview
Request body for transactional emails
POST /v1/transactional/email/sendconst response = await fetch('/v1/transactional/email/send', {
method: 'POST',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"subject": "Hello There",
"body": "Hello there, this is the Postman team.",
"recipient": "hello@example.com",
"cc":["cc-recipient@email.com"],
"bcc":["bcc-recipient@email.com"],
"classification":"FOR_ACTION",
"tag":"Greetings v2"
}),
});
const data = await response.json();Authorisation
Body

Response body
id string
Status
Explanation
Example API Call
API Response
Status Code
Last updated
Was this helpful?