Skip to content

Instantly share code, notes, and snippets.

@DominicBreuker
Last active April 10, 2016 18:12
Show Gist options
  • Save DominicBreuker/5e7348583690a8cc553c9c9ec4e52e5d to your computer and use it in GitHub Desktop.
Save DominicBreuker/5e7348583690a8cc553c9c9ec4e52e5d to your computer and use it in GitHub Desktop.
gs_spreadsheet_example
...
$.ajax({
url: "https://script.google.com/macros/s/AKfycbz4aFabJ80gajXFBcXlFLpR6n9ad9GHs4UcT6ux9w7RAYcI_9w/exec",
// this was 'url: "././mail/contact_me.php"'
type: "POST",
data: {
name: name,
phone: phone,
email: email,
message: message
},
...
success: function() {
// Show success message on website
...
},
error: function() {
// Show error message on website
...
},
})
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment