Hi
I need this to be able to send a file, (not as an attachment if possible)... the file is an image.... heres the code I have so far:
<?php
//
$msg .= "Sender Name:\t$POST[artist]\n";
$msg .= "Sender E-Mail:\t$POST[from]\n";
$msg .= "Title of Image:\t$POST[title]\n";
$msg .= "Art from:\t$POST[art]\n";
$msg .= "Comments:\t$POST[comments]\n";
$msg .= "File:\t$POST[file]\n";
//
$recipient = "someone@email.com";
$subject = "Image Submission";
//
$mailheaders .= "From: Image Submission Form <> \n";
$mailheaders .= "Reply-To: $_POST[from]\n\n";
if ($ACTION == "send-mail") {
mail($recipient, $subject, $msg, $mailheaders);
}
?>
Any help would be.... helpful!?
thanks