Hi,
Thanks for this component, I am trying to implement on multiple client sites but need an answer to to following.
1) Multiple fields in Subject.
As per instructions on found on this forum, I have the following on the 'onsubmit before'
my special field subject=subject.
However the email comes in with a blank subject. What am I doing wrong? Do I have to declare 'subject' in the form itself?
2) Multiple fields in 'from email'
Similarly I have been trying to get the senders first and last name in my 'from email'. This will make it easier for the sales team to reply to the potential customer.
This is what I have in my onsubmit before code
3)To avoid rework, after I pay the license fee can I simply get rid of the back link from the code rather than reinstall? Is there a major difference between the versions? I will install the 'licensed' version for other clients but for this one I wanted to avoid that.
Thanks for your help.
-Jacob
Thanks for this component, I am trying to implement on multiple client sites but need an answer to to following.
1) Multiple fields in Subject.
As per instructions on found on this forum, I have the following on the 'onsubmit before'
<?php $rows[0]->subject = "Investor Registration:".$_POST['Name'].''.$_POST['LName'];?>
'Name' and 'LName' are the fields that I have in my form for the first and last names.my special field subject=subject.
However the email comes in with a blank subject. What am I doing wrong? Do I have to declare 'subject' in the form itself?
2) Multiple fields in 'from email'
Similarly I have been trying to get the senders first and last name in my 'from email'. This will make it easier for the sales team to reply to the potential customer.
This is what I have in my onsubmit before code
<?php
$_POST[$paramsvalues->fromnamefield] = $_POST['Name']." ".$_POST['LName'];
?>
Do I need to input anything else in the 'from email' sections in the 'special fields' and 'general' tabs of the component? Do I have to declare anything in the form itself? I tried variations but no luck
3)To avoid rework, after I pay the license fee can I simply get rid of the back link from the code rather than reinstall? Is there a major difference between the versions? I will install the 'licensed' version for other clients but for this one I wanted to avoid that.
Thanks for your help.
-Jacob