Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
7answers
867 views

Generating an inline-image with java gwt

I'm trying to write an inline-image using Java GWT. The image however does not display: <img ...
2
votes
2answers
519 views

Inline images in CSS with background-image: url ()

I'm trying to load a gif file within my .css file, like this: li.box_entry { background-image: ...
2
votes
1answer
253 views

Inline image and caption in article - conform caption's width to image's width

Here's my code: <div class="image"> <img src="image.jpg" alt="Image description" /> <p class="caption">This is the image caption</p> </div> Here's my CSS: .image { ...
2
votes
2answers
960 views

How do I attach an inline image to the email being sent by ActionMailer?

How do I attach an inline image to the email being sent by ActionMailer? How do I test if image was really attached at a specific place in the Email?
1
vote
0answers
15 views

Sending inline attachments with ews

I'm using EWS to send an email with inline attachement(s). I'm use following code for it: var attachment = attachments.AddFileAttachment(path); attachment.ContentId = cid; attachment.IsInline = ...
1
vote
0answers
459 views

Thunderbird: embedded images not rendering inline

This may not be the most appropriate place for this, I have posted to the Mozilla boards but I'm guessing SO gets a few more eyeballs... Anyway: We're generating an HTML email with inline images. ...
1
vote
1answer
966 views

Sending inline HTML images in email

I want to send HTML content via email. I open gmail via intent and shows compose page using below code. Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); ...
1
vote
2answers
1k views

How to send an email with inline images using zend framework?

The documentation specifies how to add inline attachement, but what is the correct way of referencing it from the html part? Is it possible to include images automatically as it is in other libraries? ...
0
votes
0answers
68 views

Send Multiple Images Embedded in iPhone Email

I want to send multiple images in email from my iPhone. But all these images appear as attachment. I want to embed the images. I know I should use body as Html, and use . But it was not successful, I ...
0
votes
3answers
68 views

Can we Embed an Image to a Email without using HTML?

I want to send an e-mail consisting an image from my C# program. I can completely do that using the code samples at How to Send Mails from your GMAIL Account through VB.NET or C#. Windows Programming, ...
0
votes
0answers
90 views

Inline images doesn't show up on IE7

Here is the code I use(using SASS) @mixin data-uri-bg($image, $properties) background: inline-image($image) $properties *background: url($image) $properties // For IE7 On IE7 some of the images ...
0
votes
1answer
153 views

How can I save all of the images in a Word 2007 document as separate files?

How can I save all of the images/figures in a Word 2007 document as separate files? Right now I have to save each one separately. And I can't even save them from within Word -- I have to copy them ...
0
votes
2answers
388 views

Send email as html with embedded images as background

I am trying to send email as html with embedded images (not attachment) and as background. I was trying to use Xpert Mailer but their documantion has small amount of information so I didnt succeed. I ...