Send Mail with inline images?

C

Christoph B.

Hey,

I've got the following problem:
I have got a complete html page with inline CSS and images (with remote
urls) that I want to send as a html email.

So what I need to do is:

1. loop through img tags, extract url
2. attach image, fetch cid
3. change img src to cid:<contentid>

Can anyone tell me what to use for this? I need something that
returns the content id after I attach an image, so I can change it in
the html.

Thanks in advance,
Christoph
 
S

soldier.coder

Hey,

I've got the following problem:
I have got a complete html page with inline CSS and images (with remote
urls) that I want to send as a html email.

So what I need to do is:

1. loop through img tags, extract url
2. attach image, fetch cid
3. change img src to cid:<contentid>

Can anyone tell me what to use for this? I need something that
returns the content id after I attach an image, so I can change it in
the html.

Thanks in advance,
Christoph

Whats a cid??
 
M

Martin Boese

Hey,

I've got the following problem:
I have got a complete html page with inline CSS and images (with
remote urls) that I want to send as a html email.

So what I need to do is:

1. loop through img tags, extract url
2. attach image, fetch cid
3. change img src to cid:<contentid>

Can anyone tell me what to use for this? I need something that
returns the content id after I attach an image, so I can change it in
the html.

I can't give you a full solution, but to inline the image you can do
this:

require 'base64'

fn = '/path/to/image.png'
src = "data:image/png;base64,#{Base64.encode64(File.read(fn))}"
new_tag = "<img src='#{src}'>"

Assuming you attach an 'image/png' file.


Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top