Skip to content

thesephist/lovecroft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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}