diff --git a/ruby/lib/jam_ruby.rb b/ruby/lib/jam_ruby.rb index 34fa48f0b..93f414273 100755 --- a/ruby/lib/jam_ruby.rb +++ b/ruby/lib/jam_ruby.rb @@ -41,6 +41,7 @@ require "jam_ruby/resque/scheduled/audiomixer_retry" require "jam_ruby/resque/scheduled/icecast_config_retry" require "jam_ruby/resque/scheduled/icecast_source_check" require "jam_ruby/resque/scheduled/cleanup_facebook_signup" +require "jam_ruby/resque/scheduled/user_progress_emailer" require "jam_ruby/resque/google_analytics_event" require "jam_ruby/mq_router" require "jam_ruby/base_manager" diff --git a/ruby/lib/jam_ruby/app/mailers/user_mailer.rb b/ruby/lib/jam_ruby/app/mailers/user_mailer.rb index dbee64f8f..8f21c8e7f 100644 --- a/ruby/lib/jam_ruby/app/mailers/user_mailer.rb +++ b/ruby/lib/jam_ruby/app/mailers/user_mailer.rb @@ -41,6 +41,7 @@ sendgrid_recipients([user.email]) sendgrid_substitute('@USERID', [user.id]) + sendgrid_substitute(EmailBatchProgression::VAR_FIRST_NAME, [user.first_name]) mail(:to => user.email, :subject => "Welcome to JamKazam") do |format| format.text diff --git a/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.html.erb b/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.html.erb index 96fea047f..b74876e92 100644 --- a/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.html.erb +++ b/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.html.erb @@ -1,27 +1,45 @@ <% provide(:title, 'Welcome to JamKazam!') %> +
Hello <%= EmailBatchProgression::VAR_FIRST_NAME %> -- +
+We're delighted that you have decided to try the JamKazam service, and we hope that you will enjoy using JamKazam to play music with others. Following are links to some resources that can help to get you up and running quickly.
-Tutorial videos that show you how to use the key features of the product:
+Getting Started Video
+We recommend watching this video before you jump into the service just to get oriented. It will really help you hit the ground running:
+https://www.youtube.com/watch?v=VexH4834o9I
+
+Other Great Tutorial Videos
+There are several other very great videos that will help you understand how to find and connect with other musicians on the service, create your own sessions or find and join other musicians’ sessions, play in sessions, record and share your performances, and even live broadcast your sessions to family, friends, and fans. Check these helpful videos out here:
https://jamkazam.desk.com/customer/portal/articles/1304097-tutorial-videos
-Getting Started knowledge base articles:
+Knowledge Base Articles
+You can find Getting Started knowledge base articles on things like frequently asked questions (FAQ), minimum system requirements for your Windows or Mac computer, how to troubleshoot audio problems in sessions, and more here:
https://jamkazam.desk.com/customer/portal/topics/564807-getting-started/articles
-Support Portal in case you run into trouble and need help:
+JamKazam Support Portal
+If you run into trouble and need help, please reach out to us. We will be glad to do everything we can to get you up and running. You can find our support portal here:
https://jamkazam.desk.com/
- We look forward to seeing - and hearing - you online soon!
+JamKazam Community Forum
+And if you just want to chat, share tips and war stories, and hang out with fellow JamKazamers, you can visit our community forum here:
+http://forums.jamkazam.com/
+Please take a moment to like or follow us by clicking the icons below, and we look forward to seeing – and hearing – you online soon! +
+ + -- Team JamKazam diff --git a/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.text.erb b/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.text.erb index 89f7d39fc..ef28cd06c 100644 --- a/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.text.erb +++ b/ruby/lib/jam_ruby/app/views/jam_ruby/user_mailer/welcome_message.text.erb @@ -1,16 +1,27 @@ -We're delighted that you have decided to try the JamKazam service, -and we hope that you will enjoy using JamKazam to play music with others. -Following are links to some resources that can help to get you up and running quickly. +Hello <%= EmailBatchProgression::VAR_FIRST_NAME %> -- -Tutorial videos that show you how to use the key features of the product: +We're delighted that you have decided to try the JamKazam service, and we hope that you will enjoy using JamKazam to play music with others. Following are links to some resources that can help to get you up and running quickly. + +Getting Started Video +We recommend watching this video before you jump into the service just to get oriented. It will really help you hit the ground running: +https://www.youtube.com/watch?v=VexH4834o9I + +Other Great Tutorial Videos +There are several other very great videos that will help you understand how to find and connect with other musicians on the service, create your own sessions or find and join other musicians’ sessions, play in sessions, record and share your performances, and even live broadcast your sessions to family, friends, and fans. Check these helpful videos out here: https://jamkazam.desk.com/customer/portal/articles/1304097-tutorial-videos -Getting Started knowledge base articles: +Knowledge Base Articles +You can find Getting Started knowledge base articles on things like frequently asked questions (FAQ), minimum system requirements for your Windows or Mac computer, how to troubleshoot audio problems in sessions, and more here: https://jamkazam.desk.com/customer/portal/topics/564807-getting-started/articles -Support Portal in case you run into trouble and need help: -https://jamkazam.desk.com/ +JamKazam Support Portal +If you run into trouble and need help, please reach out to us. We will be glad to do everything we can to get you up and running. You can find our support portal here: +https://jamkazam.desk.com -We look forward to seeing - and hearing - you online soon! +JamKazam Community Forum +And if you just want to chat, share tips and war stories, and hang out with fellow JamKazamers, you can visit our community forum here: +http://forums.jamkazam.com - - Team JamKazam \ No newline at end of file +Please take a moment to like or follow us by clicking the icons below, and we look forward to seeing – and hearing – you online soon! + +-- Team JamKazam