From 95093fce3dac30116f68b200507887f65448fca7 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 19 Dec 2024 12:18:30 -0600 Subject: [PATCH] all emails got to ethan too --- src/api/mt_church_form.rs | 1 + src/api/mt_form.rs | 1 + src/api/mt_parent_form.rs | 1 + src/api/mt_teacher_form.rs | 1 + 4 files changed, 4 insertions(+) diff --git a/src/api/mt_church_form.rs b/src/api/mt_church_form.rs index 2ad4f4a..f3e634f 100644 --- a/src/api/mt_church_form.rs +++ b/src/api/mt_church_form.rs @@ -162,6 +162,7 @@ impl MtChurchForm { .unwrap(), ) .to("Chris Cochrun ".parse().unwrap()) + .to("Ethan Rose ".parse().unwrap()) .subject(email_subject) .singlepart(email) { diff --git a/src/api/mt_form.rs b/src/api/mt_form.rs index 9a5c299..94ab807 100644 --- a/src/api/mt_form.rs +++ b/src/api/mt_form.rs @@ -355,6 +355,7 @@ impl MtForm { .unwrap(), ) .to("Chris Cochrun ".parse().unwrap()) + .to("Ethan Rose ".parse().unwrap()) .subject(email_subject) .multipart(multi) { diff --git a/src/api/mt_parent_form.rs b/src/api/mt_parent_form.rs index ba26fdc..38137eb 100644 --- a/src/api/mt_parent_form.rs +++ b/src/api/mt_parent_form.rs @@ -168,6 +168,7 @@ impl MtParentForm { .unwrap(), ) .to("Chris Cochrun ".parse().unwrap()) + .to("Ethan Rose ".parse().unwrap()) .subject(email_subject) .singlepart(email) { diff --git a/src/api/mt_teacher_form.rs b/src/api/mt_teacher_form.rs index 16a436c..db18cbd 100644 --- a/src/api/mt_teacher_form.rs +++ b/src/api/mt_teacher_form.rs @@ -154,6 +154,7 @@ impl MtTeacherForm { .unwrap(), ) .to("Chris Cochrun ".parse().unwrap()) + .to("Ethan Rose ".parse().unwrap()) .subject(email_subject) .singlepart(email) {