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

📜 Trigger survey-email to teacher #3995

Open
woutccc opened this issue Jan 31, 2023 · 17 comments
Open

📜 Trigger survey-email to teacher #3995

woutccc opened this issue Jan 31, 2023 · 17 comments
Assignees

Comments

@woutccc
Copy link

woutccc commented Jan 31, 2023

  1. GOAL: retrieving feedback (for improvement purposes) from teachers on why they drop out of the program on 3 different points in the teacher journey:
  • TEACHER_DropOut_1: Account created but never created a class.
    Trigger: date of account creation + 14 days (of inactivity)

  • TEACHER_DropOut_2: Account created, created a class but stopped (no activity for 2 weeks) before reaching level 3. Trigger: date of reaching level 3 + 21 days (of inactivity)

  • TEACHER_DropOut_3: Account created, created a class, followed through for a full school year and then stopped
    Trigger: date of ending course with class + 90 days (of inactivity)

  1. Survey link to be sent to teacher via email through Mailchimp
@woutccc
Copy link
Author

woutccc commented Feb 1, 2023

@noelgolding Hi Noel, it was you how was volunteering last Tuesday for helping our with this issue right? What do you need from me to get this moved forward? Note I have created just 1 survey in Mailchimp and no invitation email or jourbney yet (need to figure out how, but dont expect this to be too difficult)

@woutccc
Copy link
Author

woutccc commented Feb 1, 2023

@Felienne is there a reason why I cant assign myself (and Noel) to this issue?

@Felienne
Copy link
Member

Felienne commented Feb 1, 2023 via email

@noelgolding noelgolding self-assigned this Feb 2, 2023
@noelgolding
Copy link
Contributor

noelgolding commented Feb 2, 2023

@woutccc

What do you need from me to get this moved forward?

You will need to create an email template with the survey link, or embedded survey. I don't think you will need to create a journey or welcome email for this survey.

I will create a new campaign via the mailchimp api, each time the survey is to be sent to a new group

I will need the mailchimp api credentials and email template id. we can sync up on those items outside of this conversation.

@Felienne we may need to update the db schema to either have a join table or new field to identify the users we have already sent a survey to so we don't spam them.

@Felienne
Copy link
Member

Felienne commented Feb 2, 2023

Yes, you have to be members of the org first! I will invite you tomorrow

I have assigned you now @woutccc! (Noel was already there)

@noelgolding
Copy link
Contributor

@Felienne based on the db schema, I don't think we have the necessary data to formulate the queries for scenarios 2 and 3. Please let me know if there is an updated schema that exposes the level for a given class and whether or not the course was completed for a given class.

@Felienne
Copy link
Member

Felienne commented Feb 6, 2023

@Felienne based on the db schema, I don't think we have the necessary data to formulate the queries for scenarios 2 and 3. Please let me know if there is an updated schema that exposes the level for a given class and whether or not the course was completed for a given class.

Hi @noelgolding!

Firstly, I am not 100% sure the schema is up to date (maybe @jpelay can chip in?). But I think based on the information we have, we can do something for scenarios 2 and 3:

We can look at the class, fetch all students in the class, and then fetch their programs and see if the students reached a certain level (and for performance reasons, we can store that max_level on the class so we don't have to do that expensive query multiple times).

The question is what "reaching level 3" means. One student? All students? The majority of students? But that is a definition question and not a technical limitation. I am inclined to say something like 80%?

Similarly for TEACHER_DropOut_3, the question is what it means to "follow for a whole year". Some schools might just have , say, 8 weeks for programming courses and might fill them with Hedy entirely. Is that a drop out or not? They might plan to do the same next year. So maybe for scenario 3 we want something like more than a year of no activity? That means that they did not start at the same time (But for now, I think we can do these manually and should focus first on 1 and 2).

Hope this helps!

@noelgolding
Copy link
Contributor

would we want to limit scenarios 2 and 3 to teachers with just 1 class? or do we want to find any class that matches the criteria?

@Felienne
Copy link
Member

Felienne commented Feb 6, 2023

would we want to limit scenarios 2 and 3 to teachers with just 1 class? or do we want to find any class that matches the criteria?

Maybe all classes? Like this:

TEACHER_DropOut_2: Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)?

@Felienne
Copy link
Member

Felienne commented Feb 6, 2023

But of course we can also take it "gradual" and first start to find teachers with 1 class! that stopped.

@jpelay
Copy link
Member

jpelay commented Feb 10, 2023

I am not 100% sure the schema is up to date (maybe @jpelay can chip in?)

It most certainly isn't! It's fairly outdated by this point.

For scenario 2, as you say, it depends on the amount of students who reached level 3! Which we can of course do looking at their programs, or also look at their quiz scores right? Like we do for 'Highest level reached' in the view class

@woutccc
Copy link
Author

woutccc commented Feb 13, 2023

@Felienne @noelgolding we might want to start off with only the first 2 "dropout groups". With the 2nd one like Felienne stated: "Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)". Ultimately we want to have more insight in
a) Teacher interested in Hedy but did not manage to start at all. WHY
b) Teacher started with Hedy but did not manage to follow through. WHY

We can adjust the trigger parameters along the way, when/if the survey insights point us into other directions...

@woutccc
Copy link
Author

woutccc commented Feb 13, 2023

Other question, before I set up the email(s) in Mailchimp: should I translate survey (and email) into Dutch first?

@Felienne
Copy link
Member

@Felienne @noelgolding we might want to start off with only the first 2 "dropout groups". With the 2nd one like Felienne stated: "Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)". Ultimately we want to have more insight in a) Teacher interested in Hedy but did not manage to start at all. WHY b) Teacher started with Hedy but did not manage to follow through. WHY

We can adjust the trigger parameters along the way, when/if the survey insights point us into other directions...

Yes lovely idea to just start with a simple scenario! Let's discuss tonight who will pick this up!

@Felienne
Copy link
Member

For scenario 2, as you say, it depends on the amount of students who reached level 3! Which we can of course do looking at their programs, or also look at their quiz scores right? Like we do for 'Highest level reached' in the view class

I would say: let's do the simplest thing first: less than x% (50?) have reached level 3. Later we can also take other things into account.

@Felienne
Copy link
Member

Other question, before I set up the email(s) in Mailchimp: should I translate survey (and email) into Dutch first?

That would be lovely! We have a large part of Dutch teachers in the database.

@Felienne Felienne changed the title Trigger survey-email to teacher [FEATURE] Trigger survey-email to teacher Sep 23, 2023
@Felienne
Copy link
Member

I think it is clear now that @noelgolding will not come back to pick this up, this would fit with the community management tasks of @hasan-sh (but no rush!)

@Felienne Felienne assigned Felienne and unassigned hasan-sh Mar 1, 2024
@Felienne Felienne changed the title [FEATURE] Trigger survey-email to teacher 📜 Trigger survey-email to teacher Sep 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: ToBeDiscussed
Development

No branches or pull requests

5 participants