Hi,
I have created a simple form that lets users browse a file (see below)
<form action="" method="post" enctype="multipart/form-data" name="form1">
<label>
<input name="cv" type="file" id="fileField" size="40">
</label>
<br>
<span class="style1"> (Make sure you upload a MS Word document) </span><br>
<br>
<label>
<input type="submit" name="button" id="button" value="Email CV">
</label>
</form>
Once they click the Email CV button, I should get an email with the document attached.
How do I do that?
Please help. Thanks🙂