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?