https://github.com/mailsac/mailsac-typescript-api
Official Mailsac TypeScript/JavaScript Client Library
https://github.com/mailsac/mailsac-typescript-api
Last synced: 5 months ago
JSON representation
Official Mailsac TypeScript/JavaScript Client Library
- Host: GitHub
- URL: https://github.com/mailsac/mailsac-typescript-api
- Owner: mailsac
- License: mit
- Created: 2023-10-27T17:53:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T23:09:16.000Z (over 1 year ago)
- Last Synced: 2025-09-17T11:18:26.837Z (9 months ago)
- Language: TypeScript
- Homepage: https://mailsac.com/api
- Size: 446 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mailsac-typescript-api
Official Mailsac TypeScript and JavaScript Client Library
Compiled JavaScript files are published here, as well as TypeScript files and .d typings.
This library is generated from the openapi spec for mailsac
which can be seen at https://mailsac.com/openapi.yml or https://mailsac.com/openapi.json.
## Usage
```shell
npm install @mailsac/api
```
The official Mailsac API spec documentation which includes usage examples for this library:
https://mailsac.com/docs/api
or see the guides:
https://docs.mailsac.com
### [List of all mailsac client methods](methodList.md)
### Usage Example
Get started by instantiating a client library instance with an API key:
```typescript
import { Mailsac } from "@mailsac/api";
// or for javascript
// const { Mailsac } = require("@mailsac/api");
const mailsac = new Mailsac({ headers: { "Mailsac-Key": process.env.MAILSAC_KEY } }); // api key from mailsac.com/v2/credentials
```
Then you can use the client to make requests:
```typescript
// list public messages on a public inbox (no need to create the inbox first!)
const messages = await mailsac.addresses.listMessages('test-public@mailsac.com');
console.log({ messages }); // [{...}, {...}, ...]
// reserve an enhanced private address - everybody starts with a free one.
const address = await mailsac.addresses.createAddress('test-private@mailsac.com');
console.log({ address }); // { _id: "test-private@mailsac-com", ... }
const myAddresses = await mailsac.addresses.list();
console.log({ myAddresses }); // [{ _id: "test-private@mailsac-com", ... }]
// got to your email client, send an email to the address....
// ...then check the mail
const messages = await mailsac.messages.listMessages('test-private@mailsac.com');
console.log({ messages }); // [{...}, {...}, ...]
```
There are many more API endpoints which are supported by the client library. Look at
`./mailsac-client.ts` under the `Mailsac` class to learn more.
Mailsac has features like custom subdomains of `msdc.co` which require no DNS config, so you can be receiving
private email for testing in seconds.