Is there any way to send an email with a link to the form and the receiver follow this link to fill in the form?
Thank you
Hi Kalkal,
Yes, just add a link to the email you send using the form URL.
Bob
Hi Bob,
you mean to wirte it in the template tab of email action?
This is what I'm trying to do:
every time someone fills in the form, with submit sent an e-mail with a link to the filled form or a form refilled with the same data plus two new fields.
So, the form must to open or reopen to a new everytime url. And the the link must be different everytime.
What actions should I use?
Hi Kalkal,
I think what you need to do is to save the form data to a Database table, then include the record id of that entry in the link. That will let you re-open a form and add the data from that record using a DB Load action.
Bob
Hi Bob,
Thank you for your replies (they help me to analyze my problem everytime).
I save the data with a DB Save action. Now,
where to create the link? In to template of email action?
and how to create it so it have the record id in the url?
Sorry for being tiring but I'm new in joomla, chronoforms, internet programming...
Hi Bob,
I did what you said. I tried the {chronoform_data.cf_id} and it gives me the right number.
In template tab of Email action I've made this link for test
<A HREF="http://127.0.0.1/mysite/index.php">LINK</A>
and it works just fine
But when I'm trying the below link
<A HREF="http://127.0.0.1/mysite/index.php&<?php echo({chronoform_data.cf_id});?>link</a>
it desappear all the body of the message.
What am I doing wrong?
Thank you Bob,
I created a new form that is connected with the same table and I used the db record load action. It works just fine.