I am having trouble getting files to attach to emails via php. These are my codes. Please Help.
Send.html
Send.php
Send.html
<form id="form1" name="form1" method="post" action="send.php" Form enctype="multipart/form-data">
<label for="textarea">Send files. <br />
<br />
<span class="style3">Email</span></label>
<input name="email" type="text" id="email" size="100" />
<label for="textarea"><br />
</label>
<p>Your File
<input type="file" name"userfile"></p>
<p>
<label for="Submit"></label>
<input type="submit" name="submit" value="Submit" id="Submit" />
</p>
</form>
Send.php
<?php
$email = $_REQUEST['email'] ;
$attachment = $_FILES['userfile'] ;
mail( "email@designembrace.com", "Send Files",
$message, "From: $email", $attachment );
header( "Location: thanks.html" );
?>