Hello,
I have an issue that I am hoping to get resolved. I have so far not found a way to handle this.
I have created a form...a template which contains XML. The template will be populated with the form information.
Form:
first name
last name
day phone
evening phone
email
comments
Email Template:
I did this much and haven't completed the form or the XML file but so far I couldn't get this much to work. I get an email that has the following error:
Parse error: syntax error, unexpected T_STRING in /home/shopn8/public_html/dev2/components/com_chronocontact/chronocontact.php(327) : eval()'d code on line 1
Any idea what I may be doing wrong? Can I not send XML files via this engine?
Thanks in advance for the help! π
I have an issue that I am hoping to get resolved. I have so far not found a way to handle this.
I have created a form...a template which contains XML. The template will be populated with the form information.
Form:
first name
last name
day phone
evening phone
comments
Email Template:
<?ADF VERSION "1.0"?>
<?XML VERSION β1.0β?>
<adf>
<prospect>
<requestdate>2000-03-30T15:30:20-08:00</requestdate>
<vehicle>
<year>1999</year>
<make>Chevrolet</make>
<model>Blazer</model>
</vehicle>
<customer>
<contact>
<name part="full">{firstname} {lastname}</name>
<phone>{dayphone}</phone>
</contact>
</customer>
<vendor>
<contact>
<name part="full">Acura of Bellevue</name>
</contact>
</vendor>
</prospect>
</adf>
I did this much and haven't completed the form or the XML file but so far I couldn't get this much to work. I get an email that has the following error:
Parse error: syntax error, unexpected T_STRING in /home/shopn8/public_html/dev2/components/com_chronocontact/chronocontact.php(327) : eval()'d code on line 1
Any idea what I may be doing wrong? Can I not send XML files via this engine?
Thanks in advance for the help! π