From f185a74a6db330a0b2fee62743e06b80bd7c7976 Mon Sep 17 00:00:00 2001 From: SaiTejaswaniBikkasani Date: Sun, 7 Jul 2024 12:25:31 +0530 Subject: [PATCH] Update "Send Email" Button to Open Default Email Client Modify the "Send Email" button to open the user's default email client with the recipient's email address pre-filled. --- faq.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/faq.html b/faq.html index fb9db66d..9d49a249 100644 --- a/faq.html +++ b/faq.html @@ -1,8 +1,4 @@ - - - - @@ -291,7 +287,7 @@

Have More questions?

Feel Free to Email us!

- +
@@ -367,6 +363,11 @@

Have More questions?

logoutButton.disabled = true; } }); + + +function sendEmail() { + window.location.href = "mailto:arpanchowdhury003@gmail.com"; +}