+
+

" alt="JamKazam Logo" />
+
Hi <%= @user.first_name -%>,
- The following musicians have joined JamKazam within the last week and have low internet latency to you that will support enjoyable sessions. If you'd like to make more musical connections, we encourage you to use the links below to send these new users a welcome message and perhaps arrange a session to play together.
- <% @musicians_data.each do | data | -%>
+
+ The following musicians have joined JamKazam within the last week and have low internet
+ latency to you that will support enjoyable sessions. If you'd like to make more musical connections,
+ we encourage you to use the links below to send these new users a welcome message and
+ perhaps arrange a session to play together.
+
+ <%
+ @musicians_data.each do | data | -%>
<%
musicians = data[:musicians]
latencies = data[:latencies]
@@ -47,26 +77,35 @@
-%>
- photo
+ <%= image_tag musician.photo_url.blank?? "avatar.png" : musician.photo_url, height: '32', width: '32', host: APP_CONFIG.action_mailer.assets_host -%>
<%= musician.first_name %> <%= musician.last_name %>
-
Latency To You: <%= latency[:ars_total_latency] %>
-
Last Active On:
+
Latency To You: <%= latency_info(latency) %>
+
Last Active On: <%= musician.last_active_timestamp %> ago
- <% musician.instruments.each do |instrument| -%>
+ <% musician.musician_instruments.each do |mi| -%>
- <%= instrument.description %><%= instrument.inspect %>
+ <%= mi.description %>: <%= @instrument_proficiencies[mi.proficiency_level.to_s.to_sym] %>
<% end -%>
<% end -%>
<% end -%>
+
+
+ To find great musical matches across the entire JamKazam commiunity and make new connections, use the button below to access our musician search feature.
+ This let you filter JamKazammers by latency, instruments, skill level, genre interests, last active day and more.
+
+
+
\ No newline at end of file
diff --git a/ruby/lib/jam_ruby/app/views/layouts/user_mailer_beta.html.erb b/ruby/lib/jam_ruby/app/views/layouts/user_mailer_beta.html.erb
index a1df8a4b7..f41a043c8 100644
--- a/ruby/lib/jam_ruby/app/views/layouts/user_mailer_beta.html.erb
+++ b/ruby/lib/jam_ruby/app/views/layouts/user_mailer_beta.html.erb
@@ -13,8 +13,11 @@
margin-bottom:0px;
line-height:140%;
}
- a {
- color: lightblue !important;
+
+ footer{
+ text-align: center;
+ padding-top: 1em;
+ color: #5e6e82;
}
@@ -23,4 +26,13 @@
<%= yield -%>
+