HTML interesse |
|
hallo,
misschien een domme vraag, maar hoe kan ik een bijlage dat al op mijn ftp staat mee geven in een mail() functie.
Ik heb al gekeken op http://nl3.php.net/mail , maar snap er niet veel van.
Ik neem aan dat het gaat om dit stukje code:
<?
# Attachment
$msg .= "--".$mime_boundary.$eol;
$msg .= "Content-Type: ".$attachments[$i]["content_type"]."; name=\"".$file_name."\"".$eol;
$msg .= "Content-Transfer-Encoding: base64".$eol;
$msg .= "Content-Disposition: attachment; filename=\"".$file_name."\"".$eol.$eol; // !! This line needs TWO end of lines !! IMPORTANT !!
$msg .= $f_contents.$eol.$eol;
?>
<? # Attachment $msg .= "--".$mime_boundary.$eol; $msg .= "Content-Type: ".$attachments[$i]["content_type"]."; name=\"".$file_name."\"".$eol; $msg .= "Content-Transfer-Encoding: base64".$eol; $msg .= "Content-Disposition: attachment; filename=\"".$file_name."\"".$eol.$eol; // !! This line needs TWO end of lines !! IMPORTANT !! $msg .= $f_contents.$eol.$eol; ?>
Het gaat hier om een Word-document.
Iemand die weet hoe ik dit kan toevoegen in mijn mail functie:
In mijn mail() stuur ik ook text mee, dit heb ik al:
<?
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Site Naam <no-reply@site.nl>' . "\r\n";
?>
<? $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: Site Naam <no-reply@site.nl>' . "\r\n"; ?>
maar verder kom ik niet,
iemand die mij kan helpen?
bvd
|