Do you use the file uploads feature? I have tried this but how do i get the file to attache to the email.
Can someone explain how this part works.
Can someone explain how this part works.
<table width="400" border="0">
<tr>
<td>Name</td>
<td><input name="name" type="text" size="30" maxlength="30"></td>
</tr>
<tr>
<td>E-mail Address </td>
<td><input name="email" type="text" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Course</td>
<td><input name="course" type="text" id="course" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Campus</td>
<td><select name="campus">
<option value="Forth Valley College">Forth Valley College</option>
<option value="Stirling University">Stirling University</option>
</select> </td>
</tr>
<tr>
<td>Date of Birth </td>
<td><input name="dob" type="text" id="dob" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Sex</td>
<td><select name="sex" id="sex">
<option value="Female">Female </option>
<option value="Male">Male </option>
</select></td>
</tr>
<tr>
<td>Phone</td>
<td><input name="phone" type="text" id="phone" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Upload picture </td>
<td><input type="file" name="file"></td>
</tr>
<tr>
<td><span class="style1">Help prevent spam by entering the verification code </span></td>
<td>{imageverification}</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="send"></td>
</tr>
</table>
<select name="campus">
<option value="Forth Valley College">Forth Valley College</option>
<option value="Stirling University">Stirling University</option>
</select>
I think those will give ChronoForms problems (but maybe not) shouldn't make any difference to file upload though.