Sender Display Name
By default, the From name shown in the recipient's inbox is your account's registered business name (or first name if no business name is set). Use the optional fromName field to override this on a per-send basis, useful when you send from multiple domains under one account that each represent different brands.
// Registered account name: "Reventlify"
// Sending from obodomfarms.com, override the display name:
{
"email": "customer@example.com",
"fromEmail": "hello@obodomfarms.com",
"fromName": "Obodom Farms",
"subject": "Your order is ready",
"mailBodyText": "Hi! Your order has been packed and is ready for pickup."
}
// Recipient sees: Obodom Farms <hello@obodomfarms.com>If fromName is omitted or blank, the fallback order is: account business name → account first name → email local part.