Problem with printing email

Status
Not open for further replies.

gdmanesis

New Member
Using Joomla! 2.5.6 and fabrik 3.0.6.3
Evrything works great on my project except the final result which needs to be printed on paper.
I have tried with different email templates, made my known still getting the same result.
The repeated groups data is being printed on paper as a bulleted list followed by commas.
What i need to have on the email received and the printed paper is something like this
HTML:
<table>
  <tr>
    <td width="23%" align="center" bgcolor="#CCCCCC"><strong>Column Name</strong></td>
    <td width="32%" align="center" bgcolor="#CCCCCC"><strong>Column Name</strong></td>
  </tr>
    <tr>
    <td align="center">record 1</td>
    <td align="center">record 1</td>
  </tr>
  <tr>
    <td align="center">record 2</td>
    <td align="center">record 2</td>
  </tr>
  <tr>
    <td align="center">record 2</td>
    <td align="center">record 3</td>
  </tr>
  <tr>
    <td align="center">record 3</td>
    <td align="center">record 4</td>
  </tr>
</table>
Have searched the forum for similar threads , no luck

Any ideas?
Thank you in advance
Have searched the forum for similar threads , no luck

Any ideas?
Thank you in advance
 
hi
sorry for the late reply
The debug email template should show you how to do this

PHP:
<p>Below out puts the form's join data one record at a time:</p>
<table>
<?php
$joindata = $this->data['join'];
foreach (array_keys($joindata) as $joinkey) :
    $keys = array_keys($joindata[$joinkey]);
    $length = count($joindata[$joinkey][$keys[0]]);
    for ($i = 0; $i < $length; $i++) :
        echo '<tr><td colspan="2"><h3>record ' . $i . '</h3></td></tr>';
        foreach ($keys as $k) :
            echo '<tr><td>' . $k . '</td><td>';
        print_r( htmlentities($this->data['join'][$joinkey][$k][$i]));
        echo  '</td></tr>';
        endforeach;
    endfor;
endforeach;
?>
</table>
 
Status
Not open for further replies.
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top