I'm using a Google form to collect submissions from reddit users. One of the fields in my form is reddit username. When a user makes a submission, I want to automatically send the username that was filled in a reddit PM acknowledging their submission, e.g. a "thank you for filling in the form!" message.
What is the easiest way to achieve this?
My current line of thinking is that:
- I will need a way to detect incoming submissions and send out that data to a Python reddit bot in some manner.
- The reddit bot will receive this data, format a message, and PM the user.
For step 1, I am comfortable working with Google Apps script. I currently have a setup where I'm able to send out form submission data to a Discord webhook, but I don't know how to set up a similar system for reddit. Getting the data out to my Python script is the part I'm a bit stuck in.
Is this approach valid or should I be going about it differently? Any advice will be much appreciated!