in reply to Re: Sending HTML email w/images + attachment
in thread Sending HTML email w/images + attachment
We had no trouble makeing HTML email with images, or email with attachments, or email with a text alternative, I simply couldn't find a way to combine all three.foreach $image (@htmlimages) { $msg->attach( Type => 'image/gif', Id => $image, Path => "./$image" ); }
I could probably do it.$msg->close(Type => multipart/related);
|
---|