Jun 19th, 2010, 5:25 PM
(Jun 19th, 2010, 12:33 PM)Ben Wrote:Quote:re SwiftMailer: in the SwiftMNailer Module setup I can successfully send a test to this very same email address I am using in the form and for the form test email, but from the Forms > Edit > Email > Test page, it simply does nothing when I hit the 'Send Test Email' other than the pinwheel icon going into motion for a quick moment.
Ah! This sounds like it may be a problem with the email content. If there's even the smallest Smarty syntax error, it'll do that. Very poor error checking on my part - it just proved extremely difficult to detect Smarty errors so I haven't resolved that yet.
Could you post the HTML + text contents of your email template here? Just delete any text that's sensitive information. Hopefully we can get to the bottom of this.
- Ben
Sure thing. There is only HTML content, no plain text, and it's:
<p>
There has been a submission made through your form, {$FORMNAME}:
</p>
<table cellpadding="0" cellspacing="1">
<tr>
<td style="font-weight: bold">ID</td>
<td>{$SUBMISSIONID}</td>
</tr>
<tr>
<td style="font-weight: bold">Name</td>
<td>{$ANSWER_name}</td>
</tr>
<tr>
<td style="font-weight: bold">Phone</td>
<td>{$ANSWER_number}</td>
</tr>
<tr>
<td style="font-weight: bold">Email</td>
<td>{$ANSWER_email}</td>
</tr>
<tr>
<td style="font-weight: bold">District</td>
<td>{$ANSWER_district}</td>
</tr>
<tr>
<td style="font-weight: bold">Message</td>
<td>{$ANSWER_message}</td>
</tr>
<tr>
<td style="font-weight: bold">IP Address</td>
<td>{$IPADDRESS}</td>
</tr>
</table>
<p>
Submission made: {$SUBMISSIONDATE}
</p>
Hope that helps. Thanks for looking into this.