All Projects → sandstorm → Newsletter

sandstorm / Newsletter

Licence: MIT license
Neos Newsletter Sending Package

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Gherkin
971 projects
CSS
56736 projects

Projects that are alternatives of or similar to Newsletter

Sitegeist.MagicWand
Tools that make the Flow/Neos development easier
Stars: ✭ 47 (+147.37%)
Mutual labels:  neoscms
Sitegeist.Taxonomy
Manage vocabularies and taxonomies as separate node-hierarchy.
Stars: ✭ 14 (-26.32%)
Mutual labels:  neoscms
go-news
A minimal DynamoDB-backed mailing list package for Go.
Stars: ✭ 45 (+136.84%)
Mutual labels:  newsletter
dotmailer-magento-extension
The official Engagement Cloud for Magento extension
Stars: ✭ 14 (-26.32%)
Mutual labels:  newsletter
flow-debugproxy
A Flow Framework Debug proxy for xDebug, written in Go
Stars: ✭ 24 (+26.32%)
Mutual labels:  neoscms
haskellweekly
Publishes curated news about the Haskell programming language.
Stars: ✭ 119 (+526.32%)
Mutual labels:  newsletter
Flowpack.SearchPlugin
A simple search plugin for Neos
Stars: ✭ 23 (+21.05%)
Mutual labels:  neoscms
graphql
Flow Package to add graphql APIs to Neos and Flow that also supports some advanced features
Stars: ✭ 14 (-26.32%)
Mutual labels:  neoscms
Magento2 NewsletterSubscribeAtCheckout
This Magento 2 module allows you to enable a newsletter subscription checkbox on the checkout page.
Stars: ✭ 13 (-31.58%)
Mutual labels:  newsletter
KaufmannDigital.GDPR.CookieConsent
A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.
Stars: ✭ 21 (+10.53%)
Mutual labels:  neoscms
Flowpack.SimpleSearch.ContentRepositoryAdaptor
Adaptor for the Neos CR, based on the SimpleSearch package
Stars: ✭ 23 (+21.05%)
Mutual labels:  neoscms
phuctm97.com
🏚 Home on the Web
Stars: ✭ 41 (+115.79%)
Mutual labels:  newsletter
techworkersco.github.io
A newsletter from the Tech Workers Coalition
Stars: ✭ 13 (-31.58%)
Mutual labels:  newsletter
Engine
The Centrifuge process, filter and saves the relevant documents as recommendations to the relevant users
Stars: ✭ 20 (+5.26%)
Mutual labels:  newsletter
noptin
Noptin is the best email newsletter plugin for WordPress.
Stars: ✭ 13 (-31.58%)
Mutual labels:  newsletter
newsletter-tool
BrazilJS' newsletter tool
Stars: ✭ 35 (+84.21%)
Mutual labels:  newsletter
startpoint
Start Point For Creating Apps with Laravel (it will update to latest Laravel version)
Stars: ✭ 16 (-15.79%)
Mutual labels:  newsletter
Sleepovers-at-the-Office
This is my weekly newsletter. I talk about tech-related project ideas that you can bring up at slumber parties
Stars: ✭ 27 (+42.11%)
Mutual labels:  newsletter
Edition
The newsletter theme for Ghost
Stars: ✭ 60 (+215.79%)
Mutual labels:  newsletter
intellij-neos
Support for the Neos CMS in Intellij IDEA / PhpStorm
Stars: ✭ 37 (+94.74%)
Mutual labels:  neoscms

Sandstorm.Newsletter

The project has been sponsored by Swisscom, and initiated by Web Essentials. Thanks for your support!

This is a tool which adjusts Neos in a way such that it can be used to send Newsletters.

Is is comprised of two parts:

  • a Go Daemon which does the actual Mail-Sending
  • a Neos package this package which provides the User Interface

This is a newsletter sending infrastructure based on Neos. The actual newsletter-sending is handled through Redis and a Go-Daemon, which can be found at https://github.com/sandstorm/mailer-daemon.

Features

  • Performant and distributed mail sending through SMTP or Mandrill
  • All Newsletter content is manageable through Neos
  • Allow to replace arbitrary content in the newsletter with custom recipient-specific fields.
  • Recipient-specific fields can be previewed in the Desktop preview mode.
  • Support for multiple languages
  • Allowance to seggregate the recipient list arbitrarily to tightly control whom newsletters should be sent to, using the jq query language
  • Custom receiver sources possible
  • Supports Unsubscribe lists in a privacy-preserving manner, not storing email addresses but their hashes
  • Parallel email sending possible by starting multiple Go daemons simultaneously
  • Auto-Inline CSS style sheets for maximum compatibility

Non-Features

The following things are *not yet implemented, but might be implemented in further projects:

  • Sign Up for new Newsletters

Prerequisites

  • Install the mailer sending daemon which is written in Go
  • Install Redis
  • Install jq and ensure it exists on the PATH.

Installation / Set Up

  • Install this package through packagist:

    cd path/to/your/NeosDistribution
    composer require sandstorm/newsletter
    
  • Ensure you have the Routes included, so that means Configuration/Routes.yaml should contain the following before the Neos routes:

    -
    name: 'Newsletter'
    uriPattern: 'neos/newsletter/<NewsletterSubroutes>'
    subRoutes:
      'NewsletterSubroutes':
        package: 'Sandstorm.Newsletter'
    
    
  • Create a neos page template, using the TypoScript object Sandstorm.Newsletter:NewsletterPage. Also, ensure to include the Sandstorm.Newsletter:SampleDataWidget somewhere in your page.

    As an example, you can use the following TypoScript snippet:

    page = Sandstorm.Newsletter:NewsletterPage
    page.sampleDataWidget = Sandstorm.Newsletter:SampleDataWidget
    

Receiver Sources and Receiver Groups

Internally, the system uses files for representing receiver lists. Each line in a file represents a single receiver, and is a JSON object containing arbitrary properties (where one must be at least the email address, of course).

  • A receiver source is essentially one source for receivers. Currently, we support both line-by-line JSON and CSV files; but you might want to create your own Receiver Source lateron.

  • If you use multiple languages, the receiver source also contains a rule how the lines are segregated into the different languages.

  • The receiver group is an additional subset of receivers inside a receiver source, so you could create a "male" or "female" receiver source if you like.

Usage in Neos

  • First, go to the Newsletter Receiver Management module and create a new receiver source; in our example choose the type CSV Upload*[]:

  • Then, upload the Documentation/example.csv file. It defines the fields firstName, lastName, email, gender and language and contains just three receivers.

  • If you have a languages content dimension configured, set the correct filters; e.g:

    • German: language == "de"
    • French: language == "fr"
    • (others): false (as the input file does not contain these languages)
  • (optionally) create a receiver group for "Male", with the filter gender == "male", and vice versa for female.

  • Now, in the Content module of Neos, create a new Document of type Newsletter. In the inspector, first select a Receiver Group. Optionally define email subjects etc; and create your content as you like.

  • If your content e.g. includes {firstName}, this will be replaced with the actual first name of the email recipient. You can preview this by switching to the Desktop mode in preview central.

  • Enjoy!

Getting Help

If you get stuck, feel free to contact @sebastian or @christoph.daehne in Slack at slack.neos.io.

License

This software is licensed as MIT.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].