How do I get Autocrat addon form trigger to work with apps script form - forms

I have a regular google spread sheet that triggers a sidebar form apps script Onload:
https://docs.google.com/spreadsheets/d/1f8n0eRbUacX218zUTBmrOyPWp3wOpi6tOyU8v2UnQdc/edit?usp=sharing
I need a mail merge to be initiated every time the form is submitted.
I have used the Autocrat addon for this when using Google Forms but I cannot get the form trigger to work when submitting from an apps script form. The time trigger actually works.
I feel like im missing something here, can anyone shed some light on why the form trigger doesn't work in this configuration or perhaps other a suggestion for an alternative approach.
Really appreciate the help
Dan

Only Google Forms will trigger the on form submit trigger, so you should add a Google Form to your spreadsheet and to make that your script create a Google Form response submission.
Related
create an ItemResponse in Form
how to create a google form response with app script

Related

How to Create Public Forms in Salesforce to get the Data from Users

I have created a form in formAssembly and integrated it with salesforce and then use that form in my email template as a button. Email is sent to the customers and customers open the form by clicking on that button and then fill in the fields of the form and submit it.
The data is updated/created in salesforce as Contact/Lead.
Now i want to do the same within salesforce instead of using formAssembly. But i don't know how to achieve this. i tried with dynamic forms but it doesn't work.
Guidance/Help is required if anybody has done it before. I shall be highly grateful.
We can use the web to lead option in the setup menu to automatically add them as salesforce object

form to submit to the user's email address

I am trying to create a question and answer style quiz on a website, using forms. I would like the submit button to email the user only, from a field he/she has previously filled in, but I can't figure out how. Also, advice on whether php is the best language to write this in?
I am very new to this and would really appreciate any help. Many thanks
use the phpmailer function to send emails using php. You can read more about it here and get the library from github here

Google Form auto load survey page after submitting

I have this form on Google Drive and was wondering would it be possible to go back to the form after the user has submitted/clicked the survey. Currently once the survey has been completed it gives a message to the users saying thank you for your response. My survey is linked with a spreadsheet where it collects all the feedback. Do I need to add some kind of code within the script editor to do this and if so which one? I tried searching for answers and the closest search I have come across is this one:
Google App Script: Auto Refresh after form submission
I appreciate if anyone could provide help or advice on how to do this.
To simplifer what I want:
1) Have the form completed and submitted. It should then load saying thank you and reload the survey so the next person can complete it without having to click back or refresh the page.
I hope this makes sense to everyone.
Many thanks
Daniel

Autosubscribe to GetResponse on custom form

I have a custom form (not using getresponse form builder) and want to integrate GetResponse API to auto subscribe email leads. I do not want to use any of the getresponse form or landing page builders. Just want to integrate using API or something else.
What are the steps or where would i find this information?
I tried that once and failed. After that I contacted Getresponse and they told me it wasn't possible. So I had to use their form builder. This is a long time ago so maybe things have changed. Why not ask their support team? You never know. Anyway, after my failure I joined Aweber and succeeded in doing what you're trying now. So you can also step over to A Weber if you want.

Is it possible to create a limited registration signup form using Google Docs Forms?

I would like to create an event signup form using Google Docs. The user is able to select which session they would like to attend, but I need to somehow limit the number of people that can register for each session.
I can not find a way to do this using the standard form creator GUI, however I think it might be possible to do using Google Apps Script. I would need to be able to customize the form that is loaded to remove sessions that are already full based on a query to the underlying spreadsheet.
Is this possible, or should I look into other Web Form surveys?
The Google Apps Script Template site has some good templates to help you do something like this. In particular, the Course Registration template sounds like what you should use.