> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Manage Emails

> Send single transactional emails using REST API and official SDKs.

# Manage Emails

Mailofly allows you to dispatch transactional emails via standard REST calls or our native SDKs (Node.js, Python, Go, PHP, Dart).

## Basic Send Example

```typescript theme={null}
import { Mailofly } from "mailofly";

const mailofly = new Mailofly("mf_live_...");

const { data, error } = await mailofly.emails.send({
  from: "Acme <hello@yourdomain.com>",
  to: ["user@example.com"],
  subject: "Welcome to our platform!",
  html: "<p>Thank you for joining our community.</p>",
});
```

## Email Tracking & Statuses

Every email dispatched returns a unique message identifier (`msg_...`). You can track its delivery lifecycle through webhooks or via `mailofly.emails.get(id)`.


## Related topics

- [Manage Broadcasts](/broadcasts/manage-broadcasts.md)
- [Manage Domains](/domains/managing-domains.md)
- [Manage API Keys](/guides/api-keys/manage-api-keys.md)
- [CLI](/cli/index.md)
- [SDKs](/sdks/index.md)
