<?php
require_once("include_path_inc.php");
require_once("Zend/Mail.php");

$mail = new Zend_Mail();
$mail->setFrom('webmaster@phpfacile.com');
$mail->addTo('__adresse_du_destinataire__');
$mail->setSubject('Mail texte avec un fichier joint');
$mail->setBodyText('Ci-joint une photo de mes vacances');

$photo = "photo.jpg";
$mail->createAttachment(file_get_contents($photo),
                        'image/jpeg',
                        Zend_Mime::DISPOSITION_ATTACHMENT,
                        Zend_Mime::ENCODING_BASE64,
                        'photo.jpg');

$mail->send();
?>
