Sha256: aa6641d32259015242966b050bdccd1a87f3761987a1b595099c247b8e3dc0f3
Contents?: true
Size: 751 Bytes
Versions: 4
Compression:
Stored size: 751 Bytes
Contents
<% title "Deliveries" %> <h2><%= @campaign.name %></h2> <table style="width:100%"> <tr> <th>Email</th> <th>Token</th> <th>Sent at</th> <th>Seen at</th> <th>Clicked at</th> <th>Unsubscribed at</th> <th>Bounced at</th> <th>IP Address</th> <th>User Agent</th> </tr> <% for delivery in @deliveries %> <tr> <td><%= delivery.email %></td> <td><%= delivery.token %></td> <td><%= delivery.created_at %></td> <td><%= delivery.seen_at %></td> <td><%= delivery.clicked_at %></td> <td><%= delivery.unsubscribed_at %></td> <td><%= delivery.bounced_at %></td> <td><%= delivery.ip_address %></td> <td><%= delivery.user_agent %></td> </tr> <% end %> </table>
Version data entries
4 entries across 4 versions & 1 rubygems