0.01
The project is in a healthy, maintained state
Emailbutler allows you to track delivery status of emails sent by your app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

> 1.0
~> 6.0
~> 13.0
~> 1.39

Runtime

~> 0.11.0
> 4.0
> 6.0.0
 Project Readme

Emailbutler

Simple email tracker for Ruby on Rails applications. Emailbutler allows you to track delivery status of emails sent by your app through Sendgrid, SMTP2GO, Resend.

There are situations when you need to check whether a certain letter or certain type of letters was successfully sent from the application, and through the UI of some providers you can try to find such a letter by the recipient or the subject of the letter, but sometimes it's not enough.

Emailbutler allows you to monitor the sending of letters, collects notifications from providers about the success of delivery and adds an UI for monitoring deliveries with filtering by recipients, mailers and actions.

Installation

Add this line to your application's Gemfile:

gem 'emailbutler'
gem 'pagy'

And then execute:

$ bundle install
$ rails g emailbutler:active_record
$ rails db:migrate

Engine configuration

Initializer

Add configuration line to config/initializers/emailbutler.rb:

For ActiveRecord

require 'emailbutler/adapters/active_record'

Emailbutler.configure do |config|
  config.adapter = Emailbutler::Adapters::ActiveRecord.new # required
  config.providers = %w[sendgrid smtp2go] # required at least 1 provider since 0.8
  config.ui_username = 'username' # optional
  config.ui_password = 'password' # optional
  config.ui_secured_environments = ['production'] # optional
end

Routes

Add this line to config/routes.rb

mount Emailbutler::Engine => '/emailbutler'

Custom routes

If you need some custom behaviour you can specify your own route and use custom controller, something like

class SendgridController < ApplicationController
  skip_before_action :basic_authentication
  skip_before_action :verify_authenticity_token

  def create
    ... you can add some logic here

    Emailbutler::Container.resolve(:webhooks_receiver).call(
      mapper: Emailbutler::Container.resolve(:sendgrid_mapper),
      payload: receiver_params
    )

    head :ok
  end

  private

  def receiver_params
    params.permit('event', 'sendtime', 'message-id').to_h
  end
end

UI styles

For adding styles for UI you need to add this line to assets/config/manifest.js

//= link emailbutler.css

Or in some cases you can specify it in assets/javascript/application.js

//= require emailbutler_manifest

Mailers

Update you application mailer

class ApplicationMailer < ActionMailer::Base
  include Emailbutler::Mailers::Helpers
end

Email provider webhooks settings

Sendgrid

  • go to Mail settings,
  • turn on Event Webhook,
  • in the HTTP POST URL field, paste the URL to webhook controller of your app (host/emailbutler/webhooks/sendgrid),
  • select all deliverability data,
  • save settings.

SMTP2GO

  • go to Mail settings,
  • turn on Webhooks,
  • in the HTTP POST URL field, paste the URL to webhook controller of your app (host/emailbutler/webhooks/smtp2go),
  • select all deliverability data,
  • save settings.

Resend

  • go to Mail settings,
  • add Webhook,
  • in the Endpoint URL field, paste the URL to webhook controller of your app (host/emailbutler/webhooks/resend),
  • select all deliverability data,
  • save settings.

Usage

  1. Each event with sending email will create new record with message params in database.
  2. Each webhook event will update status of message in database.

UI

Emailbutler provides UI with rendering email tracking statistics - /emailbutler/ui, with opportunity to search, resend and/or destroy emails.

ui_index

ui_show

License

The gem is available as open source under the terms of the MIT License.