I have a form that I want to send the email out in an XML format, but I can't get it to work properly.
I'm using Joomla 1.7, and the latest V4, for 1.6, on the site.
Form has been set up with necessary fields and I do get them as straight HTML or text format fine, but when the template is set as an XML form neither work properly...
I've tried using both proper XML format: (not sure if this will show up properly...)
and also with the < and > changed to < and > (experimenting!)
Sadly neither actually produces either a xml-as-text format (all XML code disappears, just leaving the element contents), or an HTML without the HTML header...
Can I/we/you create a form type of XML or "raw" that sends the template without any removal of code or addition of an HTML header to the email?
I'm using Joomla 1.7, and the latest V4, for 1.6, on the site.
Form has been set up with necessary fields and I do get them as straight HTML or text format fine, but when the template is set as an XML form neither work properly...
I've tried using both proper XML format: (not sure if this will show up properly...)
<?xml version="1.0"?><?adf version="1.0"?>
<adf>
<prospect><requestdate>2011-10-10CDT14:12:59-05:00</requestdate>
<vehicle interest="buy" status="{newused}">
<year>{year}</year>
<make>{make}</make>
<model>{model}</model>
and also with the < and > changed to < and > (experimenting!)
<?xml version="1.0"?><?adf version="1.0"?>
<adf>
<prospect>
<requestdate>2011-10-10CDT14:12:59-05:00</requestdate>
<vehicle interest="buy" status="{newused}">
<year>{year}</year>
<make>{make}</make>
<model>{model}</model>
Sadly neither actually produces either a xml-as-text format (all XML code disappears, just leaving the element contents), or an HTML without the HTML header...
Can I/we/you create a form type of XML or "raw" that sends the template without any removal of code or addition of an HTML header to the email?