fixed contact form

This commit is contained in:
Chris Cochrun 2025-01-28 15:21:31 -06:00
parent 5758185518
commit 710ebb6031
2 changed files with 9 additions and 2 deletions

View file

@ -125,7 +125,7 @@ pub async fn contact_form(MultipartForm(mut form): MultipartForm<ContactForm>) -
Ok(_) => info!("Successfully sent email"),
Err(e) => error!("There was an error sending the email: {e}"),
}
HttpResponse::Ok().body("thankyou")
HttpResponse::Ok().body("Thank you! We will get back with you shortly!")
}
#[cfg(test)]