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

feat: Update "Send Email" Button to Open Default Email Client #1010

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions faq.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<!DOCTYPE html>




<html lang="en">
<head>
<meta charset="UTF-8">
Expand Down Expand Up @@ -291,7 +287,7 @@ <h2>Have More questions?</h2>
<p>Feel Free to Email us!</p>
</div>
<div>
<button class="moreemail">Send Email</button>
<button class="moreemail" onclick="sendEmail()">Send Email</button>
</div>
</div>

Expand Down Expand Up @@ -367,6 +363,11 @@ <h2>Have More questions?</h2>
logoutButton.disabled = true;
}
});


function sendEmail() {
window.location.href = "mailto:[email protected]";
}
</script>
</body>
</html>
Loading