Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitorfs/colossus
Self-hosted email marketing solution
https://github.com/vitorfs/colossus
automation django email-automation email-marketing mailing mailing-list python python3
Last synced: 19 days ago
JSON representation
Self-hosted email marketing solution
- Host: GitHub
- URL: https://github.com/vitorfs/colossus
- Owner: vitorfs
- License: mit
- Created: 2018-06-02T15:25:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T11:55:00.000Z (11 months ago)
- Last Synced: 2024-11-15T17:14:56.449Z (27 days ago)
- Topics: automation, django, email-automation, email-marketing, mailing, mailing-list, python, python3
- Language: Python
- Homepage: https://colossus.readthedocs.io
- Size: 33.3 MB
- Stars: 521
- Watchers: 32
- Forks: 129
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - vitorfs/colossus - Self-hosted email marketing solution (python3)
- stars - vitorfs/colossus - Self-hosted email marketing solution (Python)
README
# Colossus
[![Build Status](https://travis-ci.com/vitorfs/colossus.svg?branch=master)](https://travis-ci.com/vitorfs/colossus)
[![codecov](https://codecov.io/gh/vitorfs/colossus/branch/master/graph/badge.svg)](https://codecov.io/gh/vitorfs/colossus)
[![Documentation Status](https://readthedocs.org/projects/colossus/badge/?version=latest)](https://colossus.readthedocs.io/en/latest/?badge=latest)Self-hosted email marketing solution. Compatible with any SMTP email service.
One-click deploy to Heroku:
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
## Screenshots
![Colossus new campaign](https://colossus.readthedocs.io/en/latest/_images/colossus-new-campaign.png)
![Colossus campaigns](https://colossus.readthedocs.io/en/latest/_images/colossus-campaigns.png)
[More Colossus screenshots.](https://colossus.readthedocs.io/en/latest/features.html#screenshots)
## Features
* Create and manage multiple mailing lists;
* Import lists from other providers (csv files or paste email addresses);
* Create reusable email templates;
* Customize sign up pages (subscribe, unsubscribe, thank you page, etc.);
* Default double opt-in for sign ups;
* Schedule email campaign to send on a specific date and time;
* Track email opens and clicks;
* Change link URL after email is sent;
* Reports with geolocation;
* Compatible with Mailgun, SendGrid, Mandrill, or any other SMTP email service.## Quickstart
If you want to have a quick look or just run the project locally, you can get started by either forking this repository
or just cloning it directly:```commandline
git clone [email protected]:vitorfs/colossus.git
```Ideally, create a [virtualenv](https://docs.python-guide.org/dev/virtualenvs/) and install the projects dependencies:
```commandline
pip install -r requirements/development.txt
```Create a local database:
```commandline
python manage.py migrate
```Start development server:
```commandline
python manage.py runserver
```Open your browser and access the setup page to create an admin account:
```commandline
http://127.0.0.1:8000/setup/
```PS: Campaign scheduling will not work out-of-the-box. You need to install a message broker and [setup Celery](https://simpleisbetterthancomplex.com/tutorial/2017/08/20/how-to-use-celery-with-django.html) properly.
## Tech Specs
* Python 3.6
* Django 2.1
* PostgreSQL 10
* Celery 4.2
* RabbitMQ 3.7
* Bootstrap 4
* jQuery 3.3PostgreSQL and RabbitMQ are soft dependencies. Other databases (supported by Django) can easily be used as well as other
message broker compatible with Celery.The jQuery library is more of a Bootstrap dependency. There is very little JavaScript code in the project. For the most
part the code base is just plain Django and HTML templates.Complete list of Python dependencies can be found in the requirements files.
## Documentation
This is just a pre-release of the project and I still have to work on a proper documentation and user guides.
For now you will only find documentation of the internal APIs in the source code.
[colossus.readthedocs.io](https://colossus.readthedocs.io)
## Who's using Colossus?
Right now just myself. I'm currently using it for my blog newsletter at [simpleisbetterthancomplex.com](https://simpleisbetterthancomplex.com/).
Here is how my sign up page looks like: [sibt.co/newsletter](https://sibt.co/newsletter)
## License
The source code is released under the [MIT License](https://github.com/vitorfs/colossus/blob/master/LICENSE).