Hangi php kütüphanesi kolay bir e-posta içine görüntüleri gömmek için yapar.
Biz http://swiftmailer.org/ kullanmak ve bu durumda bellek alıcı olabilir, e-postaların toplu için saatte en az 100 K az e-postalar eta göndermek eğer çok iyi ve kullanımı kolay. Genellikle iyi bir araçtır.
Zend_Mail oldukça kolay görünüyor. Örnek kod:
$mail = new Zend_Mail();
// build message...
$mail->createAttachment($myImage,
'image/gif',
Zend_Mime::DISPOSITION_INLINE,
Zend_Mime::ENCODING_8BIT);
Eğer e-postanın HTML bölümünde görüntü başvurmak istiyorsanız, bu SO thread may be useful.
Ben oldukça güzel htmlMimeMail5 hangi bulundu yaptı.
Bununla ilgili PEAR paketleri bir göz (Posta / Mime) alın.
Here is the documentation: http://pear.activeventure.com/package/package.mail.mail-mime.addhtmlimage.html
Here is a sample: http://forums.devshed.com/php-development-5/need-an-example-for-embedding-image-using-pear-mail-mime-134461.html?p=615813