1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
# Ahoy Email
First-party email analytics for Rails
:fire: For web and native app analytics, check out [Ahoy](https://github.com/ankane/ahoy)
:bullettrain_side: To manage unsubscribes, check out [Mailkick](https://github.com/ankane/mailkick)
[](https://github.com/ankane/ahoy_email/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
gem 'ahoy_email'
```
And run the generator. This creates a model to store messages.
```sh
rails generate ahoy_email:install
rails db:migrate
```
## Getting Started
There are three main features:
- [Message history](#message-history)
- [UTM tagging](#utm-tagging)
- [Open & click analytics](#open--click-analytics)
## Message History
Ahoy Email creates an `Ahoy::Message` record for each email sent by default. You can disable history for a mailer:
```ruby
class CouponMailer < ApplicationMailer
track message: false # use only/except to limit actions
end
```
Or by default:
```ruby
AhoyEmail.default_options[:message] = false
```
### Users
Ahoy Email records the user a message is sent to - not just the email address. This gives you a history of messages for each user, even if they change addresses.
By default, Ahoy tries `@user` then `params[:user]` then `User.find_by(email: message.to)` to find the user.
You can pass a specific user with:
```ruby
class CouponMailer < ApplicationMailer
track user: -> { params[:some_user] }
end
```
The user association is [polymorphic](https://railscasts.com/episodes/154-polymorphic-association), so use it with any model.
To get all messages sent to a user, add an association:
```ruby
class User < ApplicationRecord
has_many :messages, class_name: "Ahoy::Message", as: :user
end
```
And run:
```ruby
user.messages
```
### Extra Attributes
Record extra attributes on the `Ahoy::Message` model.
Create a migration to add extra attributes to the `ahoy_messages` table. For example:
```ruby
class AddCouponIdToAhoyMessages < ActiveRecord::Migration[6.1]
def change
add_column :ahoy_messages, :coupon_id, :integer
end
end
```
Then use:
```ruby
class CouponMailer < ApplicationMailer
track extra: {coupon_id: 1}
end
```
You can use a proc as well.
```ruby
class CouponMailer < ApplicationMailer
track extra: -> { {coupon_id: params[:coupon].id} }
end
```
## UTM Tagging
Use UTM tagging to attribute a conversion (like an order) to an email campaign. If you use [Ahoy](https://github.com/ankane/ahoy) for web analytics:
1. Send an email with UTM parameters
2. When a user visits the site, Ahoy will create a visit with the UTM parameters
3. When a user orders, the visit will be associated with the order (if [configured](https://github.com/ankane/ahoy#associated-models))
Add UTM parameters to links with:
```ruby
class CouponMailer < ApplicationMailer
track utm_params: true # use only/except to limit actions
end
```
The defaults are:
- `utm_medium` - `email`
- `utm_source` - the mailer name like `coupon_mailer`
- `utm_campaign` - the mailer action like `offer`
You can customize them with:
```ruby
class CouponMailer < ApplicationMailer
track utm_params: true, utm_campaign: -> { "coupon#{params[:coupon].id}" }
end
```
Skip specific links with:
```erb
<%= link_to "Go", some_url, data: {skip_utm_params: true} %>
```
## Open & Click Analytics
While it’s nice to get feedback on the performance of your emails, we discourage the use of open tracking. If you do decide to use open or click tracking, be sure to get consent from your users and consider a short retention period. Check out [this article](https://www.eff.org/deeplinks/2019/01/stop-tracking-my-emails) for more best practices.
### Setup
Create a migration with:
```ruby
class AddTokenToAhoyMessages < ActiveRecord::Migration[6.1]
def change
add_column :ahoy_messages, :token, :string
add_index :ahoy_messages, :token
# for opens
add_column :ahoy_messages, :opened_at, :timestamp
# for clicks
add_column :ahoy_messages, :clicked_at, :timestamp
end
end
```
Create an initializer `config/initializers/ahoy_email.rb` with:
```ruby
AhoyEmail.api = true
```
And add to mailers you want to track:
```ruby
class CouponMailer < ApplicationMailer
track open: true, click: true
end
```
Use only and except to limit actions
```ruby
class CouponMailer < ApplicationMailer
track click: true, only: [:welcome]
end
```
Or make it conditional
```ruby
class CouponMailer < ApplicationMailer
track click: -> { params[:user].opted_in? }
end
```
### How It Works
For opens, an invisible pixel is added right before the `</body>` tag in HTML emails. If the recipient has images enabled in their email client, the pixel is loaded and the open time recorded.
For clicks, a redirect is added to links to track clicks in HTML emails.
```
https://chartkick.com
```
becomes
```
https://yoursite.com/ahoy/messages/rAnDoMtOkEn/click?url=https%3A%2F%2Fchartkick.com&signature=...
```
A signature is added to prevent [open redirects](https://www.owasp.org/index.php/Open_redirect).
Skip specific links with:
```erb
<%= link_to "Go", some_url, data: {skip_click: true} %>
```
By default, unsubscribe links are excluded. To change this, use:
```ruby
AhoyEmail.default_options[:unsubscribe_links] = true
```
You can specify the domain to use with:
```ruby
AhoyEmail.default_options[:url_options] = {host: "mydomain.com"}
```
### Events
Subscribe to open and click events by adding to the initializer:
```ruby
class EmailSubscriber
def open(event)
# your code
end
def click(event)
# your code
end
end
AhoyEmail.subscribers << EmailSubscriber.new
```
Here’s an example if you use [Ahoy](https://github.com/ankane/ahoy) to track visits and events:
```ruby
class EmailSubscriber
def open(event)
event[:controller].ahoy.track "Email opened", message_id: event[:message].id
end
def click(event)
event[:controller].ahoy.track "Email clicked", message_id: event[:message].id, url: event[:url]
end
end
AhoyEmail.subscribers << EmailSubscriber.new
```
## Data Protection
We recommend encrypting the `to` field (as well as the `subject` if it’s sensitive). [Lockbox](https://github.com/ankane/lockbox) is great for this. Use [Blind Index](https://github.com/ankane/blind_index) if you need to query by the `to` field.
Create `app/models/ahoy/message.rb` with:
```ruby
class Ahoy::Message < ApplicationRecord
self.table_name = "ahoy_messages"
belongs_to :user, polymorphic: true, optional: true
encrypts :to
blind_index :to
end
```
## Data Retention
Delete older data with:
```ruby
Ahoy::Message.where("created_at < ?", 1.year.ago).in_batches.delete_all
```
Delete data for a specific user with:
```ruby
Ahoy::Message.where(user_id: 1).in_batches.delete_all
```
## Reference
Set global options
```ruby
AhoyEmail.default_options[:user] = -> { params[:admin] }
```
Use a different model
```ruby
AhoyEmail.message_model = -> { UserMessage }
```
Or fully customize how messages are tracked
```ruby
AhoyEmail.track_method = lambda do |data|
# your code
end
```
## Mongoid
If you prefer to use Mongoid instead of Active Record, create `app/models/ahoy/message.rb` with:
```ruby
class Ahoy::Message
include Mongoid::Document
belongs_to :user, polymorphic: true, optional: true, index: true
field :to, type: String
field :mailer, type: String
field :subject, type: String
field :sent_at, type: Time
end
```
## History
View the [changelog](https://github.com/ankane/ahoy_email/blob/master/CHANGELOG.md)
## Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- [Report bugs](https://github.com/ankane/ahoy_email/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/ahoy_email/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
```sh
git clone https://github.com/ankane/ahoy_email.git
cd ahoy_email
bundle install
bundle exec rake test
```
|