1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?php
$expediteur="moi@monsite.com";
$message="";
$sujet="Légende de ma photo";
$sujet=utf8_encode($sujet);
$destinataire= "adresseFacebook@m.facebook.com";
$nom_photo="nom_photo.jpg";
$photo= "./images/".$nom_photo;
$boundary = "_".md5 (uniqid (rand()));
$headers ="Reply-to: $expediteur\r\nFrom: $expediteur\r\n";
$headers .= "MIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"$boundary\"\r\n";
$attached_file = file_get_contents($photo);
$attached_file = chunk_split(base64_encode($attached_file));
$attached = "\n\n". "--" .$boundary . "\nContent-Type: application; name=\"$nom_photo\"\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: attachment; filename=\"$nom_photo\"\r\n\n".$attached_file . "--" . $boundary . "--";
$body = "--". $boundary ."\nContent-Type: text/plain; charset=ISO-8859-1\r\n\n".$message . $attached;
mail($destinataire,$sujet,$body,$headers);
?> |
Partager