Thanks, that’s what I thought
Here’s my form
{exp:freeform:form form_name="jobs" required="name|email|file1" notify="myemail@email.com" return="jobs/success" file_upload="Job Applications" template="job_application" send_attachment="yes" send_user_email="yes" send_user_attachment="no" user_email_template="job_receipt"}
<p>Name<br />
<input type="text" name="name" value="" />
</p>
<p>Email<br />
<input type="text" name="email" value="" />
</p>
<input type="file" name="file1" />
<input type="submit" name="submit" value="submit" />
{/exp:freeform:form}
When I submit it validates ok but I get
Notice: Undefined index: file1 in /..snip../modules/freeform/mod.freeform.php on line 670
The form you submitted contained the following errors
* The following field is required: Name
* The following field is required: Email
* The following field is required:
It looks like it has no label, but I’m not sure where to set this for the file upload. I running the latest builds of both EE and Freeform.
Thanks again for your help.