Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 682 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 682 Bytes

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 and Atypical Press. 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

JSON API for subscriptions

POST /subscribe/{listName}

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

GET /unsubscribe/{listName}/{token}