Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have images saved in database as BLOB data. How do i embed them into html email using phpMailer?

PhpMailer has a function to embed normal images by using AddEmbeddedImage and it requires "path", "cid" & "name", all i have is a string of blob data so it won't work. The only way i can think of is temporarily generate an image from the string before using AddEmbeddedImage, however fear it might increase execution time.

Does anyone has a better idea please?

share|improve this question

1 Answer

There's AddStringAttachment() which is undocumented in the main PHPmailer docs. It allows attachments from a string instead of a file. Don't know offhand if you can then refer to this attached image via the src="cid:..." stuff, but at least you COULD attach the file to the email without having to write it out to a temp file first.

There's a little blurb about it in the phpmailer tutorials here: http://phpmailer.worxware.com/index.php?pg=tutorial

share|improve this answer
Thanks Marc, i tried that and the email did get attached fine however i don' know how to get the CID to link the image into the email. – Olizt Mar 12 '12 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.