I\'m using a Google Apps Script to send an email out - I know how to do that. I want to embed a \"Yes or No\" response link or multiple choice question, and have the recipie
A simple way to do this with little work with regard to the developing a ui and managing the responses, is to create a from using the Google Apps infrastructure, sending yourself the form by email and clicking on show original.
You can then take the embedded code and use in your scrip to send your mails, the response will be recorded in the spreadsheet associated with the form automatically.
You can then override the onFormSubmit event and do the processing you need.
Let me know if you need more info.