Ahoy Email
First-party email analytics for Rails
Ahoy Email 3.0 was recently released - see how to upgrade
🔥 For web and native app analytics, check out Ahoy
đźš„ To manage email subscriptions, check out Mailkick
Installation
Add this line to your application’s Gemfile:
gem "ahoy_email"Getting Started
There are three main features, which can be used independently:
- Message history
- UTM tagging
- Click analytics
Message History
To encrypt email addresses with Lockbox, install Lockbox and Blind Index and run:
rails generate ahoy:messages --encryption=lockbox
rails db:migrateTo use Active Record encryption, run:
rails generate ahoy:messages --encryption=activerecord
rails db:migrateIf you prefer not to encrypt data, run:
rails generate ahoy:messages --encryption=none
rails db:migrateThen, add to mailers:
class CouponMailer < ApplicationMailer
has_history
endUse the Ahoy::Message model to query messages:
Ahoy::Message.lastUse only and except to limit actions
class CouponMailer < ApplicationMailer
has_history only: [:welcome]
endTo store history for all mailers, create config/initializers/ahoy_email.rb with:
AhoyEmail.default_options[:message] = trueUsers
By default, Ahoy Email tries @user then params[:user] then User.find_by(email: message.to) to find the user. You can pass a specific user with:
class CouponMailer < ApplicationMailer
has_history user: -> { params[:some_user] }
endThe user association is polymorphic, so use it with any model.
To get all messages sent to a user, add an association:
class User < ApplicationRecord
has_many :messages, class_name: "Ahoy::Message", as: :user
endAnd run:
user.messagesExtra Data
Add extra data to messages. Create a migration like:
class AddCouponIdToAhoyMessages < ActiveRecord::Migration[8.1]
def change
add_column :ahoy_messages, :coupon_id, :integer
end
endAnd use:
class CouponMailer < ApplicationMailer
has_history extra: {coupon_id: 1}
endYou can use a proc as well.
class CouponMailer < ApplicationMailer
has_history extra: -> { {coupon_id: params[:coupon].id} }
endOptions
Set global options
AhoyEmail.default_options[:user] = -> { params[:admin] }Use a different model
AhoyEmail.message_model = -> { UserMessage }Or fully customize how messages are tracked
AhoyEmail.track_method = lambda do |data|
# your code
endData Retention
Delete older data with:
Ahoy::Message.where("sent_at < ?", 1.year.ago).in_batches.delete_allDelete data for a specific user with:
Ahoy::Message.where(user_id: 1, user_type: "User").in_batches.delete_allUTM Tagging
Use UTM tagging to attribute visits or conversions to an email campaign. Add UTM parameters to links with:
class CouponMailer < ApplicationMailer
utm_params
endThe defaults are:
-
utm_medium-email -
utm_source- the mailer name likecoupon_mailer -
utm_campaign- the mailer action likeoffer
You can customize them with:
class CouponMailer < ApplicationMailer
utm_params utm_campaign: -> { "coupon#{params[:coupon].id}" }
endUse only and except to limit actions
class CouponMailer < ApplicationMailer
utm_params only: [:welcome]
endSkip specific links with:
<%= link_to "Go", some_url, data: {skip_utm_params: true} %>Click Analytics
You can track click-through rate to see how well campaigns are performing. Stats can be stored in your database, Redis, or any other data store.
Database
Run:
rails generate ahoy:clicks
rails db:migrateAnd create config/initializers/ahoy_email.rb with:
AhoyEmail.subscribers << AhoyEmail::DatabaseSubscriber
AhoyEmail.api = trueRedis
Add this line to your application’s Gemfile:
gem "redis"And create config/initializers/ahoy_email.rb with:
# pass your Redis client if you already have one
AhoyEmail.subscribers << AhoyEmail::RedisSubscriber.new(redis: Redis.new)
AhoyEmail.api = trueOther
Create config/initializers/ahoy_email.rb with:
class EmailSubscriber
def track_send(data)
# your code
end
def track_click(data)
# your code
end
def stats(campaign)
# optional, for AhoyEmail.stats
end
end
AhoyEmail.subscribers << EmailSubscriber
AhoyEmail.api = trueUsage
Add to mailers you want to track
class CouponMailer < ApplicationMailer
track_clicks campaign: "my-campaign"
endIf storing stats in the database, the mailer should also use has_history
Use only and except to limit actions
class CouponMailer < ApplicationMailer
track_clicks campaign: "my-campaign", only: [:welcome]
endOr make it conditional
class CouponMailer < ApplicationMailer
track_clicks campaign: "my-campaign", if: -> { params[:user].opted_in? }
endYou can also use a proc
class CouponMailer < ApplicationMailer
track_clicks campaign: -> { "coupon-#{action_name}" }
endSkip specific links with:
<%= link_to "Go", some_url, data: {skip_click: true} %>By default, unsubscribe links are excluded. To change this, use:
AhoyEmail.default_options[:unsubscribe_links] = trueYou can specify the domain to use with:
AhoyEmail.default_options[:url_options] = {host: "mydomain.com"}Stats
Get stats for a campaign
AhoyEmail.stats("my-campaign")Upgrading
3.0
Links that use click analytics created before version 2.3.0 (released June 2024) will no longer work by default. To restore support, determine the previous secret token and create an initializer with:
AhoyEmail.secret_token = [AhoyEmail.secret_token, previous_secret_token]Also, Nokogiri’s HTML5 parser is now used to rewrite links for UTM tagging and click analytics when available. To use HTML4 parsing, create an initializer with:
AhoyEmail.default_options[:html5] = falseHistory
View the changelog
Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
git clone https://github.com/ankane/ahoy_email.git
cd ahoy_email
bundle install
bundle exec rake test