v1.0.0
OAS 3.1.0
Email Service
This is a FastAPI microservice for sending emails using a set email provider.
Client Libraries
This is a FastAPI microservice for sending emails using a set email provider.
From email address override the default from email address if configured.
List of email addresses to send the email to.
["user1@example.com", "user2@example"]List of reply-to email addresses.
curl /send-email \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"from_email": "",
"to_addresses": [
"user1@example.com",
"user2@example"
],
"subject": "",
"text_body": "",
"html_body": "",
"reply_to": []
}'
{
"status": true
}Successful Response