All Projects โ†’ Email-Dashboard โ†’ Email Dashboard

Email-Dashboard / Email Dashboard

Licence: mit
๐Ÿ“ช An interactive emailing management service with scheduling, templating, tracking and A/B testing.

Programming Languages

go
31211 projects - #10 most used programming language
ruby
36898 projects - #4 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Email Dashboard

Doctor
Doctor is a documentation server for your docs in github
Stars: โœญ 391 (+101.55%)
Mutual labels:  rails, ruby-on-rails, dashboard
activism-mailbot
No description or website provided.
Stars: โœญ 49 (-74.74%)
Mutual labels:  email, email-sender, emails
bulk-email-sender
Send Templatized Dynamic Emails Automatically
Stars: โœญ 30 (-84.54%)
Mutual labels:  email, email-marketing, email-sender
Awesome Emails
โœ‰๏ธ An awesome list of resources to build better emails.
Stars: โœญ 1,379 (+610.82%)
Mutual labels:  email-marketing, email, emails
Binda
Headless CMS based on Ruby on Rails
Stars: โœญ 60 (-69.07%)
Mutual labels:  rails, ruby-on-rails, dashboard
Sail
Sail is a lightweight Rails engine that brings an admin panel for managing configuration settings on a live Rails app
Stars: โœญ 484 (+149.48%)
Mutual labels:  rails, ruby-on-rails, dashboard
Email-Spammer
Great script for sending and spaming emails! gmail, yahoo, outlook, hotmail.
Stars: โœญ 79 (-59.28%)
Mutual labels:  email, email-sender, emails
Cuttlefish
Transactional email server with a lovely web interface
Stars: โœญ 985 (+407.73%)
Mutual labels:  ruby-on-rails, email, email-sender
Email Extractor
The main functionality is to extract all the emails from one or several URLs - La funcionalidad principal es extraer todos los correos electrรณnicos de una o varias Url
Stars: โœญ 81 (-58.25%)
Mutual labels:  email-marketing, email, emails
Html Email Templates
Free HTML Email Templates created using the Postcards - https://designmodo.com/postcards/
Stars: โœญ 178 (-8.25%)
Mutual labels:  email-marketing, email, emails
Fake api
The fastest way to prototype API in your Rails application
Stars: โœญ 119 (-38.66%)
Mutual labels:  rails, ruby-on-rails
Mailjet Gem
[API v3] Mailjet official Ruby GEM
Stars: โœญ 119 (-38.66%)
Mutual labels:  ruby-on-rails, email
Responsive Html Email Template
A free simple responsive HTML email template
Stars: โœญ 10,831 (+5482.99%)
Mutual labels:  email-marketing, email
Preview Email
Automatically opens your browser to preview Node.js email messages sent with Nodemailer. Made for Lad!
Stars: โœญ 112 (-42.27%)
Mutual labels:  email, emails
Gulp Mjml
Add Gulp to your MJML workflow!
Stars: โœญ 137 (-29.38%)
Mutual labels:  email, emails
Mandriller
Mandrill SMTP API integration for ActionMailer
Stars: โœญ 124 (-36.08%)
Mutual labels:  rails, email
Zen Rails Security Checklist
Checklist of security precautions for Ruby on Rails applications.
Stars: โœญ 1,765 (+809.79%)
Mutual labels:  rails, ruby-on-rails
Dry Rails
The official dry-rb railtie
Stars: โœญ 142 (-26.8%)
Mutual labels:  rails, ruby-on-rails
Awesome Newsletters
A list of amazing Newsletters
Stars: โœญ 2,468 (+1172.16%)
Mutual labels:  email, emails
Active record Events
Manage timestamps in ActiveRecord models
Stars: โœญ 109 (-43.81%)
Mutual labels:  rails, ruby-on-rails

Report bug | Request feature | Help issues | ๐Ÿ‡จ๐Ÿ‡ณ[็ฎ€ไฝ“ไธญๆ–‡]


Go Report Card

Email-Dashboard is an easy way to manage your outgoing emails from your apps. From creating and sending your emails to monitoring and managing their stats, you can do really useful things with Email-Dashboard without worried about time zone disaverage. You can ๐Ÿ”—explore Email-Dashboard docs.

๐Ÿ’ข Table of content

๐Ÿšป For whom?

๐ŸŒ If you need to send automatic emails without worried about time zone,
๐Ÿ” If you need to track your emails and analyse your results to follow better strategies,
๐Ÿ“Š If you need to monitoring your activities,
๐Ÿ“‘ If you want to use email templates,
๐Ÿ•ต๏ธ If you need to A/B testing,
๐Ÿ’ฏ And if you want to do all of this easily,

Then you're at the right place. Email Dashboard builded for you! ๐ŸŽ‰

๐Ÿ‘€ Code overview

๐Ÿ”ธ The REST API builded with superfast language ๐Ÿ”—golang.
๐Ÿ”ธ The Dashboard builded with fastest development framework ๐Ÿ”—Rails
๐Ÿ”ธ Front-end framework ๐Ÿ”—uikit using in the dashboard.

โ˜‘ Features

  • [x] Monitor email activities that your service sent.
  • [x] Interactive templates.
  • [x] Multiple SMTP support.
  • [x] Scheduled delivery with time zone.
  • [x] Perform / Cancel scheduled activities optionally.
  • [x] Mobile UI
  • [ ] Email tracking.
  • [ ] A/B testing.

๐Ÿ”ฑ Deployment

Debian

1- Install Docker

โ–ถ๏ธ Install the most recent version of the Docker Engine for your platform using the ๐Ÿ”—official Docker releases, which can also be installed using:

wget -qO- https://get.docker.com/ | sh

โ–ถ๏ธ Execute this line to allow docker to execute without being root

sudo usermod -aG docker ${USER}

โ–ถ๏ธ Logout, then login again. Permissions should be applied.

2- Install Docker Compose

โ–ถ๏ธ Install Docker Compose from the ๐Ÿ”—official page, or manually run:

curl -L "https://github.com/docker/compose/releases/download/1.11.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

3- Create data folders

 mkdir -p /datadrive/mysql && mkdir -p /datadrive/data/redis

4- Clone repo

 git clone https://github.com/Email-Dashboard/Email-Dashboard.git

โ–ถ๏ธ Update environment variables with your variables https://github.com/Email-Dashboard/Email-Dashboard/blob/master/.env

  docker-compose build
  docker-compose up -d

๐Ÿ’ป Development

macOS

Install and start Docker, check ๐Ÿ”— docker-ce-desktop-mac.

โ–ถ๏ธ Create Datafolders

mkdir -p ~/datadrive/ed/mysql && mkdir -p ~/datadrive/ed/redis

โ–ถ๏ธ Clone the repo

git clone https://github.com/Email-Dashboard/Email-Dashboard.git

โ–ถ๏ธ Update mac username in docker-compose-dev.yml in line 7 and line 27

/Users/MacUserName/datadrive/ed/mysql:/var/lib/mysql # update MacUserName with yours

โ–ถ๏ธ Start

docker-compose -f docker-compose-dev.yml build
docker-compose -f docker-compose-dev.yml up

โ–ถ๏ธ Dashboard url: http://localhost:3000
โ–ถ๏ธ Make API requests to http://localhost:8080

Debian

Install and start Docker:

wget -qO- https://get.docker.com/ | sh

โ–ถ๏ธ Execute this line to allow docker to execute without being root

sudo usermod -aG docker ${USER} # Logout, then login again. Permissions should be applied.

โ–ถ๏ธ Create Datafolders

mkdir -p /datadrive/data/mysql && mkdir -p /datadrive/data/redis

โ–ถ๏ธ Clone the repo

git clone https://github.com/Email-Dashboard/Email-Dashboard.git

โ–ถ๏ธ Update line 7 and line 27 in docker-compose-dev.yml to:

-'/datadrive/data/mysql:/var/lib/mysql'
...
- '/datadrive/data/redis:/data'

โ–ถ๏ธ Start

docker-compose -f docker-compose-dev.yml build
docker-compose -f docker-compose-dev.yml up

โ–ถ๏ธ Dashboard url: http://localhost:3000
โ–ถ๏ธ Make API requests to http://localhost:8080

๐Ÿ† Usage

1- In Dashboard

Using dashboard is really easy, like playing PUBG! You can do it any time without any effort. Because our first aim is make some time for our community with our dashboard. So, UI and dashboard is friendly as much as and we will make it better.

๐Ÿ”ธ Add your SMTP Settings
๐Ÿ”ธ Create email template with ๐Ÿ”—handlebars variables.
๐Ÿ”ธ Create notification. See, easy peasy!

2- Posting to REST API

POST https://api.{{yourhost}}/api/v3/notifications/{{notification-slug}}

Authorization: Token {{AccountToken}}

{
   "variables":{
      "button_name": "Click me!",
      "name": "John"
   },
   "email": {
      "to": ["[email protected]", "[email protected]"],
      "cc": ["cc-tes[email protected]"],
      "reply_to": ["[email protected]"],
      "from": "[email protected]"
   },
   "delivery": { # optional
     "time": "21:00",
     "date": "2018-09-22",
     "zone": "Europe/Istanbul"
   }
}

For more specified usage you can follow ๐Ÿ”—step by step instructions in docs.

๐Ÿ’ Contributing

Please read our ๐Ÿ”—contribution guidelines. We are grateful for all contributions! ๐Ÿ™ With following our ๐Ÿ”—rules of the discussions, you can contribute many of way. Our ๐Ÿ”—issue tracker is the preferred channel for bug reports, features requests and submitting pull requests. We utilized several ๐Ÿ”—labels to help organize and identify issues. You can start with there! Also if you want to add some new feature:

  1. Clone or fork the project (git clone https://github.com/Email-Dashboard/Email-Dashboard)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

๐Ÿ”Ž But before opening a feature request, please take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. So, you can provide as much detail and context as possible.

๐Ÿ“ Authors


Sahin Boydas
Product
LinkedIn

Muhammet
Lead Developer
Github

Sadik
Developer
Github

Tommy Yang
Developer
Github blog

๐ŸŽ“ License

This program is a free and open source software. You can redistribute it and/or modify it under the terms of the license provided in the ๐Ÿ”—LICENSE file. Use of this software is subject to important terms and conditions as set forth in the ๐Ÿ”—LICENSE file.

๐Ÿ” Acknowledgement

If you liked our dashboard, please give us a "Star" โญ๏ธ. Your support is what keep us moving forward and delivering happiness to you! Thank's a million, you're our Clark Kent/Kara Danvers! In case of any questions or concerns, feel free to contact us anytime. Btw you can see our guilds from our ๐Ÿ”—credit content ๐Ÿ˜Š

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].