Hi, I am using ChronoForms to get special data about a user. After sending the data of the form to my email-adress, the Acajoom Autoresponder should start with the Name and the Email of the subscriber.
I managed to start the autoresponder correctly by entering
to the ChronoContact-Tab "Form URLs" (Submit URL - the form "action"-URL).
So now, after submitting the form, the autoresponder starts and it is redirected to another page but I don't get my Form-Emails with the user data any more?!?
If I delete the line I get my Form-Data via Email - but no autoresponder π
I spent hours and cannot find out why?! Can you help me here please!
Thank you!
Marco
(Form-Link: http://www.rohrconsulting.at/index.php)
I managed to start the autoresponder correctly by entering
index.php?option=com_acajoom&act=subscribe&name={name}&email={email}&receive_html=1&listid=1&redirectlink=danke.htmlto the ChronoContact-Tab "Form URLs" (Submit URL - the form "action"-URL).
So now, after submitting the form, the autoresponder starts and it is redirected to another page but I don't get my Form-Emails with the user data any more?!?
If I delete the line I get my Form-Data via Email - but no autoresponder π
I spent hours and cannot find out why?! Can you help me here please!
Thank you!
Marco
(Form-Link: http://www.rohrconsulting.at/index.php)
Hi Marco,
If you use an OnSubmit URL the results are submitted to that URL on submission and ChronoForms will never see them so cannot send emails or save data.
Bob
If you use an OnSubmit URL the results are submitted to that URL on submission and ChronoForms will never see them so cannot send emails or save data.
Bob
Hi Bob, thanx 4 the quick reply! How can I solve the problem then?
If I use "Redirect URL" the link is not working b/c the variables {name} and {email} are not transmitted.
Is there another way (function of chronoForms) to get the form-data AND start the autoresponder?
I have the possibilites from Acajoom: http://www.acajoom.com/content/view/7697/93/
If I use "Redirect URL" the link is not working b/c the variables {name} and {email} are not transmitted.
Is there another way (function of chronoForms) to get the form-data AND start the autoresponder?
I have the possibilites from Acajoom: http://www.acajoom.com/content/view/7697/93/
Hi Marco,
Leave the ReDirect URL in the Form URLs tab empty but build a custom url in one of the OnSubmit boxes. There's an example in this post. If ChronoForms sees that there is a value set it will redirect after sending the emails etc.
Bob
Leave the ReDirect URL in the Form URLs tab empty but build a custom url in one of the OnSubmit boxes. There's an example in this post. If ChronoForms sees that there is a value set it will redirect after sending the emails etc.
Bob
Thank you for the hint ... it's working - but only in debug-mode.
If i turn debug-mode OFF it sais, cannot solve email-adress (so the variables are not handed over). π
I added this code in the tab "Form Code" and then in the Tab "On Submit Code - after sending email":
If i turn debug-mode OFF it sais, cannot solve email-adress (so the variables are not handed over). π
I added this code in the tab "Form Code" and then in the Tab "On Submit Code - after sending email":
<?php
$url = "http://www.rohrconsulting.at/";
$url .= "index.php?option=com_acajoom&act=subscribe";
$url .= "&name={name}";
$url .= "&email={email}";
$url .= "&receive_html=1";
$url .= "&listid=1";
$url .= "&redirectlink=danke.html";
if ( $debug ) {
echo "url: ";print_r($url);echo "<br />";
echo "<br /><a href='$url'>Click to continue</a><br />";
} else {
$rows[0]->redirecturl = $url;
}
?>
Hi Marco,
I don't think that you can use the {. . .} syntax in an OnSubmit box use
Bob
I don't think that you can use the {. . .} syntax in an OnSubmit box use
$email = JRequest::getVar('email', '', 'post');
. . .
$url .= "&email=$email";instead (and the same for 'name').Bob
This topic is locked and no more replies can be posted.
