|
|
sweenster 09-13-2003, 11:58 AM I wish to create a script on my site that allows a user to e-mail a picture to a friend.
I can do the e-mail bit easily enough - but I want to include the picture as an attachment.
I know i need to use MIME email for this but cant find any useful links on how to get started - anything out there is a bit too complex.
does anyone know any simple starter tutorials? and/or have some code lying around?
SDP2006 09-13-2003, 02:31 PM I think you would have to include something in the headers. I've seen it before, but I don't know it right off the top of my head.
sweenster 09-13-2003, 04:45 PM hold the presses.....
I found and adapted a script that does the job:
www.whatsinmypocket.co.uk/sweenster/php/mail.txt
which works ok BUT when the "image" arrives in your email it is still in code form. I think the problem comes down to this chunk:
// Add file attachment to the message
$message .= "--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
//"Content-Disposition: attachment;\n" .
//" filename=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
As I nabbed.. erm I mean... "borrowed" this code from a script that orignally handled file uploads i think I need to replace the variables $fileatt_name and $fileatt_type with values so that they are JPEG compatible.
Any suggestions??
|
|
|
|
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum
vBulletin® v3.8.2, Copyright ©2000-2013, Jelsoft Enterprises Ltd.