An open API service indexing awesome lists of open source software.

https://github.com/thesephist/lovecroft

Minimal mailing list manager for static sites, with a simple JSON API
https://github.com/thesephist/lovecroft

mailer mailing-list paper-css

Last synced: 5 months ago
JSON representation

Minimal mailing list manager for static sites, with a simple JSON API

Awesome Lists containing this project

README

          

# Lovecroft 💌

Lovecroft is a minimal mailing list service supporting multiple mailing lists and newsletter authoring with Markdown, integrating with Mailgun. It backs newsletters behind [thesephist.com](https://thesephist.com) and [Atypical Press](https://atypicalpress.com). Lovecroft acts as a common backend for static sites that need to host email subscriptions, and exposes a cross-origin JSON API for enrolling in and unsubscribing from mailing lists.

![Screenshot](screenshot.jpg)

## JSON API for subscriptions

### POST `/subscribe/{listName}`

```ts
{
givenName: string,
familyName: string,
email: string,
}
```

### GET `/unsubscribe/{listName}/{token}`