Wondering how I'd go about doing this process:
I've been informed that Entry-Points is the way to go about this, which there's a nice tutorial on how to create, but I'm still not actually sure about the workings of this process.
How would one get the entrypoint to update this field?
The URL in the email (or maybe multiple links for each choice) would pass back the account uuid and response value to a custom entry point. Something like this:
www.your-url?index.php?entryPoint=myCustomEntrypoint&id=d1384226-b5fb-43b9-01a7-4f54989ce3ff&response=NotApplicable
Your entrypoint would then retrieve these values from the $_REQUEST['id']
and $_REQUEST['response']
, from these you can load the bean object and update the value accordingly.