Sep 30th, 2011, 2:34 AM
(Sep 29th, 2011, 8:12 PM)Ben Wrote: Hi Dave,
That sounds like a bug... could you post your email template here? (just the appropriate bit, if it contains sensitive information)
- Ben
Here's the HTML portion of the email sent to the poster:
Code:
<p>
Thanks for your submission to the Community Service Awards! Below is what you submitted. If there are any errors or ommissions, simply reply to this email with your changes.
</p>
<table cellpadding="0" cellspacing="1">
{foreach from=$fields item=field}
{if $field.col_name != "submission_date" && $field.answer}
{if $field.field_type == "file"}
<tr>
<td style="font-weight: bold">{$field.field_title}:</td>
<td><a href="{$field.folder_url}/{$field.answer}">{$field.answer}</a> ({$field.folder_path})</td>
</tr>
{else}
<tr>
<td style="font-weight: bold">{$field.field_title}:</td>
<td>{$field.answer}</td>
</tr>
{/if}
{/if}
{/foreach}
</table>
<p>
Submission made: {$SUBMISSIONDATE}
</p>
and the text only version:
Code:
Thanks for your submission to the Community Service Awards! Below is what you submitted. If there are any errors or ommissions, simply reply to this email with your changes.
{foreach from=$fields item=field}
{if $field.col_name != "submission_date" && $field.answer}
{if $field.field_type == "file"}{$field.field_title}: {$field.folder_url}/{$field.answer}
{else}{$field.field_title}: {$field.answer}
{/if}
{/if}
{/foreach}
Submission made: {$SUBMISSIONDATE}
Dave