A client-server notification system for HTML emails, sms and more.


Keywords
alerting, email, notifications, python, sms
License
BSD-3-Clause
Install
pip install tattler==0.1

Documentation

badge_pipeline badge_coverage badge_license

image

🚩 Table of contents

  1. 👀 What is tattler?
  2. 🤩 Examples
  3. 🚀 Quick start
  4. 💙 Help us be better
  5. 🎖️ License
  6. 📈 Enterprise users
  7. 📌 Links

👀 What is tattler?

Are you building an online service and need to send beautiful, branded notifications via email or SMS to your users?

Tattler makes that easy for you. Your application makes a simple HTTP call to tattler:

Tattler helps you with these:

  1. Templates: Load templates for event password_changed for email, SMS etc.
  2. Addressbook: Fetch the user's email address and mobile number from your DB (with trivial-to-write plug-ins).
  3. Template data: Fetch variables for your templates from your DB (with trivial-to-write plug-ins).
  4. MIME: Package a multi-part email with HTML+text fallback.
  5. Delivery: Send the content through SMTP and an SMS delivery network.
  6. Dev mode: Let your applications trigger notifications to the real user and have tattler only deliver it to your debug address.

Tattler is designed with simplicity in mind. It strives to be easy to adopt and useful among common needs -- so you can focus on your communication, brand and customer journey.

If your system sends notifications from multiple different softwares -- say a web application, a billing daemon, and a cron job which monitors inventory -- then your simplification gains with tattlers get multipled 🚀

image

😵‍💫 Don't beat around the bush!

Tattler is:

  • a server
  • written in python
  • for UNIX systems
  • that exposes a REST interface
  • which your applications contact
  • to request delivery of notifications to users.

🤩 Examples

Here's a little gallery of notifications sent via tattler to email and SMS:

Fig 1. Example notification as HTML email. Fig 2. Its corresponding plain text version.
Fig 3. Tattler's demo notification with reusable code samples. Fig 4. A SMS notification.

🚀 Quick start

Install tattler:

Run tattler server:

Trigger a demo notification via HTTP:

... or via command-line utility:

... or via tattler's python SDK:

from tattler.client.tattler_py import send_notification

# replace ``your@email.com`` with your actual email address
send_notification('demoscope', 'demoevent', 'your@email.com', mode='production', srv_addr='127.0.0.1', srv_port=11503)

Done!

Want more? Proceed to the complete quickstart in tattler's documentation for plug-ins, deployment and more.

💙 Help us be better

Here's how you can help, in order of increasing time commitment 🙂

  • ⭐️ star our repository if you like tattler. That's our go-to place whenever we feel sad! 😁
  • Let us know that you are using tattler. How long? For what organization? What is your feedback?
  • Blog about tattler. If you found tattler useful, chances are your post will be useful to others too.
  • Report any issue in our code or docs. We take those seriously.
  • Package tattler for your distribution. Else Ubuntu, Debian, CentOS and FreeBSD will serve the most people.
  • Implement a client for tattler in another language.

See our contributing guidelines for details.

🎖️ License

Tattler is open-source software (BSD 3-clause license).

📈 Enterprise users

Tattler is enterprise-friendly. Enterprise users avail of a subscription which provides a bugfixing warranty, extra features, and patronage for the continuity of the project.

📌 Links