emailthing
v0.0.10
Published
A web app for receiving and sending your emails!
Readme
EmailThing
This is a package with the SDK for EmailThing to use with the API, and also has a CLI version so you can view your emails and send them from the terminal.
NOTE: This is v0 still and can contain breaking changes.
SDK
JavaScript library for the EmailThing API.
Setup
First, you need to get an API key, which is available in the EmailThing mailbox config page.
import { EmailThing } from 'emailthing';
const emailthing = new EmailThing('et__aaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbb');Usage
Send your first email:
await emailthing.send({
from: '[email protected]',
to: ['[email protected]'],
subject: 'hello world',
text: 'it works!',
});You can also use more advanced features:
await emailthing.send({
from: 'Me <[email protected]>',
to: [
'Friend <[email protected]',
'Better Friend <[email protected]>'
],
cc: ['Me <[email protected]>'],
bcc: ['Me <[email protected]>'],
reply_to: 'Everyone <[email protected]>',
subject: 'hello world',
text: 'it works!',
html: '<h1>it works!</h1>',
headers: {
'X-Entity-Ref-ID': '23456789',
},
config: {
// no config options right now
},
});CLI
An in-progress visual terminal interface for the EmailThing site.
Modes provided by @emailthing/cli:
- Normal interactive: navigate mailboxes, read and compose emails from your terminal
- Agent mode: let your agent interact with your emails via command line
Note: This requires Bun as its runtime.
$ bunx emailthing
$ bunx @emailthing/cli
# Welcome to EmailThing CLI!
# <interactive terminal UI starts here>
$ bunx @emailthing/cli agent list # see your email list
$ bunx @emailthing/cli agent email id12345 # see that email