php - Is there any way to submit a form from my server to Google Apps Script (.gs) file -


i want submit form web site on gscript file on google drive , have take form values, , generate pdf file , email it. have working using google forms, google sheet, goal here have data stored in mysql relational database data not duplicated, , fill in our form data auto-populate if exists, or can choose list on left fill in pertinent informaton. donation receipt system nonprofit organization.

the key separate donor information donations. want able store our donor info, things birthdays, anniversaries, , other miscellaneous information can send out birthday cards, etc not store data on , on again because made several donations.

is there way can move form on secured portion of own server, , submit data on .gs file parses data , puts pdf document, mailchimp, , backwards mysql database, , sends appropriate emails. cut out of work on google side, , of except pdf , email own server, , handle rest google if can submit data post or request or json .gs script.

i cannot find anywhere.

apps script has lots of reserved function names. 2 of reserved function names are:

doget() 

and

dopost() 

both of them triggers, or event handlers triggered when or post request made published web app url. data can passed apps script request. here related stack overflow post link stack overflow call gas external source

stack overflow question


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -