Hey guys,
I'm building a secure form system to allow users to transmit personal information to a separate 3rd party system.
I have completed the process completely so that on the redirect page after submission, the pages sends the data to the 3rd party system and the information is stored. I would not like to immediately delete the information from out web server database. So I use:
RGFormsModel::delete_lead($lead_id);
at the end of the code. This however gives me an error "You don't have adequate permission to delete entries." for non-logged in users which 100% of the people submitting the information will be. Is there any way around this that you know of?
Thanks!
Eric