From cc93e34ebd428bbc74e4fd5361d94b652d221741 Mon Sep 17 00:00:00 2001 From: Wes R Date: Mon, 13 Jan 2020 16:23:38 -0800 Subject: [PATCH] Remove links and references to survey in app and registration email (#853) --- .../app/components/top-navbar/top-navbar.component.html | 6 ------ .../self-registration-four.component.html | 8 -------- embc-app/Services/Registrations/NewRegistrationService.cs | 4 ---- 3 files changed, 18 deletions(-) diff --git a/embc-app/ClientApp/src/app/components/top-navbar/top-navbar.component.html b/embc-app/ClientApp/src/app/components/top-navbar/top-navbar.component.html index 02c5d9186..92468c6a4 100644 --- a/embc-app/ClientApp/src/app/components/top-navbar/top-navbar.component.html +++ b/embc-app/ClientApp/src/app/components/top-navbar/top-navbar.component.html @@ -15,9 +15,6 @@ - @@ -38,9 +35,6 @@ - diff --git a/embc-app/ClientApp/src/app/self-registration/self-registration-four/self-registration-four.component.html b/embc-app/ClientApp/src/app/self-registration/self-registration-four/self-registration-four.component.html index fa58536e0..31852db81 100644 --- a/embc-app/ClientApp/src/app/self-registration/self-registration-four/self-registration-four.component.html +++ b/embc-app/ClientApp/src/app/self-registration/self-registration-four/self-registration-four.component.html @@ -18,11 +18,3 @@

What you need to know:

  • If you are at a Reception Centre, proceed to one of the Emergency Support Services volunteers on site who will be able to assist you with completing your registration.
  • -
    -

    Feedback Survey

    -

    - EMBC ESS is seeking your input! We are requesting your participation in a very brief survey in order to gain feedback about your experience with the new online ESS registration system. Your responses will help us to evaluate and improve the effectiveness of this new system.
    - The survey should not take longer than 2 minutes to complete. Thank you! -

    - Take Survey -
    diff --git a/embc-app/Services/Registrations/NewRegistrationService.cs b/embc-app/Services/Registrations/NewRegistrationService.cs index aed58aa7d..88558a3b2 100644 --- a/embc-app/Services/Registrations/NewRegistrationService.cs +++ b/embc-app/Services/Registrations/NewRegistrationService.cs @@ -42,7 +42,6 @@ private EmailMessage CreateEmailMessageForRegistration(ViewModels.Registration r { var essRegistrationLink = @"Evacuee Self-Registration"; var emergencyInfoBCLink = @"Emergency Info BC"; - var surveyLink = @"CLICK HERE"; var subject = "Registration completed successfully"; var body = $@"

    This email has been generated by the Emergency Support Services program to provide you with a record of your Emergency Support Services File Number. If you have not registered online via the {essRegistrationLink} and are receiving this email, please contact your family members to ensure they have not registered on your behalf. If you have received this email in error, please disregard.

    @@ -61,9 +60,6 @@ private EmailMessage CreateEmailMessageForRegistration(ViewModels.Registration r
  • If you are in a Reception Centre, proceed to one of the Emergency Support Services volunteers on site who will be able to assist you with completing your registration.
  • Please bring your Emergency Support Services File Number with you to the Reception Centre.
  • -

    - Have you filled out our feedback survey? If not, please {surveyLink} to take the survey; it should take no longer than 2 minutes to complete. Your responses are greatly appreciated as they will help us to evaluate and improve the effectiveness of the new online ESS registration system. -

    "; }