Last active
March 5, 2024 00:54
-
-
Save kesarawimal/53d4308a8234638b88275225c32a11b6 to your computer and use it in GitHub Desktop.
FormSubmit AJAX Documentation: Fetch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/github/fetch | |
fetch("https://formsubmit.co/ajax/[email protected]", { | |
method: "POST", | |
headers: { | |
'Content-Type': 'application/json', | |
'Accept': 'application/json' | |
}, | |
body: JSON.stringify({ | |
name: "FormSubmit", | |
message: "I'm from Devro LABS" | |
}) | |
}) | |
.then(response => response.json()) | |
.then(data => console.log(data)) | |
.catch(error => console.log(error)); |
How can I change the display template in the mail if using ajax?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON.
Any solution?