Hello guys? You have been very wonderful, I have some stress. I designed a site and send the form details to an email address but Image will not or can not be sent along the other details I don't know why. Please I need help.
This is what I did.With the line Aspirant photo to carry an image to the email address
<?php
$msg = "Message from Platform Form\n";
$msg .= "Aspirant's Background:\t$_POST[aspirant_background]\n";
$msg .= "Aspirant's choice:\t$_POST[aspirant_choice]\n";
$msg .= "Aspirant's Offer:\t$_POST[aspirant_offer]\n";
$msg .= "Aspirant's email:\t$_POST[aspirant_email]\n";
$msg .= "Aspirant's Photo:\t$_POST[aspirant_photo]\n";
$to = "info@helegrow.com";
$subject = "Platform Submission";
$mailheaders = "From: The site <> \n";
$mailheaders .= "Reply-To: $_POST[sender_email]\n\n";
mail($to, $subject, $msg, $mailheaders);
?>