Moriwenne,
First, thanks already for your reply.
filepath: /var/www/html/start/administrator/components/com_facileforms/mailtpl/
filename: RM_ContactForm.html.php
same name as the form and the mail is using it
the source of the RM_ContactForm.html.php
<?php
defined('_JEXEC') or die('Direct Access to this location is not allowed.');
?>
<p><b>Contact</b><br />
Verzonden op: <?=$SUBMITTED ?><?=$NL ?><br />
<br />
</p>
<p><?php foreach ($MAILDATA as $DATA): ?>
<?=$DATA[_FF_DATA_TITLE]?>: <?=$DATA[_FF_DATA_VALUE]?><?=$NL ?>
<?php endforeach; ?>
</p>
<p>
<b>Extra informatie:</b>
<br />
<?=$PROCESS_FORMTITLE ?>: <?=$TITLE ?><?=$NL ?><br />
<?=$PROCESS_SUBMITTEDAT ?>: <?=$SUBMITTED ?><?=$NL ?><br />
<?=$PROCESS_SUBMITTERIP ?>: <?=$IP ?><?=$NL ?><br />
<?=$PROCESS_PROVIDER ?>: <?=$PROVIDER ?><?=$NL ?><br />
<?=$PROCESS_BROWSER ?>: <?=$BROWSER ?><?=$NL ?><br />
<?=$PROCESS_OPSYS ?>: <?=$OPSYS ?><?=$NL ?>
</p>
<p>
<?php if ($RECORD_ID != ''): ?>
<?=$PROCESS_RECORDSAVEDID?> <?=$RECORD_ID ?><?=$NL ?>
<?php endif; ?>
</p>
I have only changed the lines around, haven't really touched the code itself.
Any idea's for the following, instead of using
<?php foreach ($MAILDATA as $DATA): ?>
<?=$DATA[_FF_DATA_TITLE]?>: <?=$DATA[_FF_DATA_VALUE]?><?=$NL ?>
<?php endforeach; ?>
can i use something to parse every part of the form field instaed of everything at once as above
so i mean
<?php foreach ($MAILDATA as $DATA): ?>
<?=$DATA[_FF_DATA_Name]?>: <?=$DATA[_FF_DATA_Name value]?><?=$NL ?>
<?=$DATA[_FF_DATA_email]?>: <?=$DATA[_FF_DATA_email value]?><?=$NL ?>
<?php endforeach; ?>
Any idea's?