Jump to content

Attaching image to email


dc_jt

Recommended Posts

I have form which emails details input by user.

I have a field which uploads an image, but i need this to be attached to my email.

The code for my email at the moment is:

[code]
//send email
$name=$_REQUEST['name'];
$email=$_REQUEST['email'];
$address=$_REQUEST['address1'];
$town=$_REQUEST['town'];
$city=$_REQUEST['city'];
$postcode=$_REQUEST['postcode'];
$country=$_REQUEST['country'];
$license=$_REQUEST['license'];
$memory=$_REQUEST['memory'];
$photo=$_FILES['photo'];
$datap=$_REQUEST['datap'];

$to      = "***@***.com";
$subject = "Readers Archive";
$message = 'Name: ' .$name."\n". 'Email: '.$email."\n". 'Address: '.$address."\n". 'Town: '.$town."\n". 'City: '.$city."\n".'Postcode:'.$postcode."\n".'Country: '.$country."\n".'Photo:'.$photo;

$from =  'From: ***@***.com';
mail($to, $subject, $message, $from);
mail("***@***.com", $subject, $message, $from);


}
}
?>
[/code]

This successfuly emails all user details. So how could i attach the actual photo to this?? (At the moment is just says 'Array' next to the photo part in the email.

Thanks
Link to comment
https://forums.phpfreaks.com/topic/25956-attaching-image-to-email/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.