I have tried to look after answer on the forum, but not exactly what I am after. Previous I have made simple forms, now I will create forms (have not started yet) that secure the input from a guest-user. Meaning if they write "Going to the shop today", this will not be stored any places in browser or database. Also when the guest-user has finished the form, the guest-user will have only one possibility to download PDF to his computer, or send to the guest-user's email address. The data from the form should not be stored on my website, database or sent email to me.
The question is, Is that possible? In case, how should I start and what should I be careful of?
I have SSL certificate on my site.
Thanks in advance,
The question is, Is that possible? In case, how should I start and what should I be careful of?
I have SSL certificate on my site.
Thanks in advance,
Hi randike,
The form data will not be saved unless you use a Save Data action so you can just send an email to the user. If you want to create a PDF then you will need to save the file to the server - you can then use a cron job to delete any saved PDFs every few hours.
Bob
The form data will not be saved unless you use a Save Data action so you can just send an email to the user. If you want to create a PDF then you will need to save the file to the server - you can then use a cron job to delete any saved PDFs every few hours.
Bob
Use an event switcher, data source set to {user:guest}
It will be 1 if the user is a guest, and 0 if they're a signed in user. Alternatively, {user:id} will be 0 for guest and any other number (so '*') if they're signed in. Put the things you want to happen in the appropriate branch.
It will be 1 if the user is a guest, and 0 if they're a signed in user. Alternatively, {user:id} will be 0 for guest and any other number (so '*') if they're signed in. Put the things you want to happen in the appropriate branch.
Hi Greyhead
OK, I will see how I can make the cron job for delete PDF.
Many thanks for your answer
Randi
OK, I will see how I can make the cron job for delete PDF.
Many thanks for your answer
Randi
This topic is locked and no more replies can be posted.