Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amend welcome email copy #1861

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 8 additions & 14 deletions app/views/member_mailer/welcome_coach.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@

%p
- if @member.subscriptions.any?
You'll automatically receive email invitations to our workshops as soon as they are open for RSVP.
- if @member.chapters.pluck(:name).include?("London")
However, our London chapter doesn't send workshop invitations via email, so you won't receive email invites for regular London events. We open RSVPs at around 1pm on the Friday before the workshop, and you will be able to register through the workshop page on our website. To be notified when we open RSVPs, join the #london-chapters channel
= link_to 'on our Slack', 'http://slack.codebar.io'
or
= link_to 'follow us', 'https://twitter.com/codebar'
on Twitter.
You'll receive email invitations to our workshops as soon as they are open for RSVP.
- else
We send out invitations to our events via email.
= link_to "Sign up on our subscriptions page", subscriptions_url
to receive invitations to our workshops.
Places are limited, so be sure to respond quickly if you want to attend.
Places are limited, so be sure to respond quickly if you would like to attend.

%p
%strong
Expand All @@ -25,14 +19,14 @@
%strong
as soon as possible
so we can allocate your place to someone on the waiting list. If you take a place
on the waiting list, please keep that evening free and check your email frequently.
on the waiting list, please keep that evening free and check your emails frequently.
You will be notified at least three hours before the event if you receive a place.

%p
Our workshops start with around 30 minutes of socialising, before we assign
Our workshops start with around 30 minutes of socialising with food, before we assign
you to coach one or two students. They'll either be working on
= link_to "one of our tutorials", "http://tutorials.codebar.io/"
or looking for help with their own projects. Don't worry if you're not an expert on
or looking for help with their own project. Don't worry if you're not an expert on
the topics - your role is not about having all the answers! Guiding a student through
solving their own problem is more useful in the long run. There are more
=link_to "tips for coaching on the codebar website.", teaching_guide_url
Expand All @@ -45,15 +39,15 @@

%p
If you have any questions, reply to this email or chat to one of the organisers at
the workshop. We'll be at the table with the name stickers. We're here to help
the workshop. They'll be at a table with the name stickers. They're there to help
with anything on your mind.

%p
If you didn't mean to sign up as a coach, not to worry! You can always
= link_to "change your subscriptions via our website.", subscriptions_url
= link_to "change your subscriptions via our website here.", subscriptions_url

%p
We hope to see you at a workshop soon, and thank you again for volunteering!
We hope to see you at a workshop soon, and thank you so much for volunteering!

%p
#{"-- "}
Expand Down
19 changes: 8 additions & 11 deletions app/views/member_mailer/welcome_student.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,23 @@

%p
- if @member.subscriptions.any?
You'll automatically receive email invitations to our workshops as soon as they are open for RSVP.
- if @member.chapters.pluck(:name).include?("London")
However, our London chapter doesn't send workshop invitations via email, so you won't receive email invites for regular London events. We open RSVPs at around 1pm on the Friday before the workshop, and you will be able to register through the workshop page on our website. To be notified when we open RSVPs, join the #london-chapters channel
= link_to 'on our Slack', 'http://slack.codebar.io'
or
= link_to 'follow us', 'https://twitter.com/codebarLDN'
on Twitter.
You'll receive email invitations to our events as soon as they are open for RSVP.
- else
We send out invitations to our events via email.
matyikriszta marked this conversation as resolved.
Show resolved Hide resolved
= link_to "Sign up on our subscriptions page", subscriptions_url
to receive invitations to our workshops.
Places are limited, so be sure to respond quickly if you want to attend.

%p
Our workshops are available to women, non-binary, LGBTQ people, and people belonging to underrepresented ethnic groups in the tech industry. If you belong to one of these groups, you are more than welcome to attend. You can find out more about codebar's workshops
If you accept an invitation and can no longer make it, please cancel your spot as soon as possible so we can allocate it to someone else. If you take a place on the waiting list, please keep that evening free and check your emails frequently. You will be notified at least three hours before the event if you receive a place.

%p
Our workshops are available to women, non-binary, LGBTQ+, and people belonging to underrepresented ethnic groups in the tech industry. If you belong to one of these groups, you are more than welcome to attend. You can find out more about codebar's workshops
= link_to "in our FAQ.", faq_url

%p
Each workshop starts with 30 minutes of socialising and food, before we assign
you to a coach with one to three other students. You can either work through
Our workshops start with 30 minutes of socialising with food, before we assign
you to a coach with one or two other students. You can either work through
= link_to "one of our tutorials", "http://tutorials.codebar.io/"
or get help with your own project.

Expand All @@ -39,7 +36,7 @@

%p
If you have any questions, reply to this email or chat to one of the organisers at
the workshop. We'll be at the table with the name stickers. We're here to help
the workshop. They'll be at a table with the name stickers. They're there to help
with anything on your mind.

%p We hope to see you at a workshop soon!
Expand Down
8 changes: 8 additions & 0 deletions spec/mailers/previews/member_mailer_preview.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class MemberMailerPreview < ActionMailer::Preview
def welcome_student
MemberMailer.welcome_student(Member.first)
end
def welcome_coach
MemberMailer.welcome_coach(Member.first)
end
end
Loading