From 5cee60991fb8ca6b290156540e46beda16b2905b Mon Sep 17 00:00:00 2001 From: Louis Kirkham Date: Wed, 29 Nov 2023 14:40:34 +0000 Subject: [PATCH] Copy changer on GL nomination mailer https://app.asana.com/0/1199154381249427/1206056810287705/f Copy change --- app/views/account_mailers/group_leader_mailer/notify.text.erb | 2 +- .../group_leader_mailer/preview/notify.html.slim | 2 +- spec/mailers/account_mailers/group_leader_mailer_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/account_mailers/group_leader_mailer/notify.text.erb b/app/views/account_mailers/group_leader_mailer/notify.text.erb index 6c98854bc..a77b05f04 100644 --- a/app/views/account_mailers/group_leader_mailer/notify.text.erb +++ b/app/views/account_mailers/group_leader_mailer/notify.text.erb @@ -2,7 +2,7 @@ Dear <%= @group_leader_name %>, You may be aware that <%= @group_name %> has been nominated for the King's Award for Voluntary Service (KAVS). Congratulations! -We are currently making checks to ensure the group is eligible. If it is, your local Lieutenancy Office will be in contact in October to arrange an assessment visit to find out more about your group and what makes the voluntary work outstanding. This will normally involve discussions with representatives of the management committee, some volunteers, paid staff (if any) and some of the people who benefit from your activities. They may also ask to see certain documents: +If your group is eligible for consideration, your local Lieutenancy Office will be in contact over the upcoming weeks to arrange an assessment visit to find out more about your group and what makes the voluntary work outstanding. This will normally involve discussions with representatives of the management committee, some volunteers, paid staff (if any) and some of the people who benefit from your activities. They may also ask to see certain documents: * any surveys or evidence to show the impact of your group and the need for its work * the latest volunteer and staff numbers (including hours worked, if possible) diff --git a/app/views/account_mailers/group_leader_mailer/preview/notify.html.slim b/app/views/account_mailers/group_leader_mailer/preview/notify.html.slim index f5dec454f..659398301 100644 --- a/app/views/account_mailers/group_leader_mailer/preview/notify.html.slim +++ b/app/views/account_mailers/group_leader_mailer/preview/notify.html.slim @@ -7,7 +7,7 @@ p.govuk-body style="font-size: 19px; line-height: 1.315789474; margin: 30px 0 30 | has been nominated for the King's Award for Voluntary Service (KAVS). Congratulations! p.govuk-body style="font-size: 19px; line-height: 1.315789474; margin: 30px 0 30px 0;" - | We are currently making checks to ensure the group is eligible. If it is, your local Lieutenancy Office will be in contact in October to arrange an assessment visit to find out more about your group and what makes the voluntary work outstanding. This will normally involve discussions with representatives of the management committee, some volunteers, paid staff (if any) and some of the people who benefit from your activities. They may also ask to see certain documents: + | If your group is eligible for consideration, your local Lieutenancy Office will be in contact over the upcoming weeks to arrange an assessment visit to find out more about your group and what makes the voluntary work outstanding. This will normally involve discussions with representatives of the management committee, some volunteers, paid staff (if any) and some of the people who benefit from your activities. They may also ask to see certain documents: ul li any surveys or evidence to show the impact of your group and the need for its work li the latest volunteer and staff numbers (including hours worked, if possible) diff --git a/spec/mailers/account_mailers/group_leader_mailer_spec.rb b/spec/mailers/account_mailers/group_leader_mailer_spec.rb index e2e626032..8919792bb 100644 --- a/spec/mailers/account_mailers/group_leader_mailer_spec.rb +++ b/spec/mailers/account_mailers/group_leader_mailer_spec.rb @@ -25,7 +25,7 @@ it "renders the body" do group_name = form_answer.document["nominee_name"] expect(mail.body.raw_source).to match(group_name) - expect(mail.body.raw_source).to match("We are currently making checks to ensure the group is eligible.") + expect(mail.body.raw_source).to match("If your group is eligible for consideration, your local Lieutenancy Office will be in contact") end end end