From 8502d0dc9283d8ba0f281b9e935bafdab87a4f98 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 19 Dec 2024 11:57:21 -0600 Subject: [PATCH] fixing email subject and info! --- src/api/health_form.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/health_form.rs b/src/api/health_form.rs index 787176d..1107202 100644 --- a/src/api/health_form.rs +++ b/src/api/health_form.rs @@ -314,8 +314,8 @@ impl HealthForm { async fn send_email(&mut self) -> Result<()> { let first = self.first_name.clone(); let last = self.last_name.clone(); - let email_subject = format!("{} {} signed up for mission trip!", first, last); - info!("{first} {last} signed up for mission trip!"); + let email_subject = format!("{} {} filled out a health form!", first, last); + info!("{first} {last} filled out a health form!"); let email = self.build_email().await; let temp_file = self.get_temp_file(); let multi = if let Some((file, path)) = temp_file {