I am totally new to Google Apps Script.
I want to have a product verification & key generation system which can recieve customers order information and issue an unique verification key file for customer to activate their product. However, since this is a very niche market and I dont have any money to afford a server and want to make this work without my computer always on, I would like to use google sheet as a database and try to have some code to automatically this progress.
I currently finish my key generator using C# which use following package:
System.Text;
System.Security.Cryptography;
System.Text.RegularExpressions;
PhoneNumbers;
System.Globalization;
System.Management;
I am thinking to have a Google Apps Script code that embbed to Google sheets which will detect the new data added to the sheet, auto send data to my key generation program and send a email to the buyer.
Is it possible?