Right way to send HTML-Mails containing pictures: Use Server or Embedded images?
Posted
by hkda150
on Stack Overflow
See other posts from Stack Overflow
or by hkda150
Published on 2010-06-09T06:23:34Z
Indexed on
2010/06/09
6:32 UTC
Read the original article
Hit count: 165
I want to ....
create a html-email containing several images (company header, etc).
The images shall be displayed as email content, not as an attachement.
So how is the best way to do this?
I'm aware of two possibilities:
- embedded images send as attachment (
<IMG src="cid:321353119@02062010-119E">
) - images are placed on the server (
<img src="http://myserver.com/mypicture.gif">
)
© Stack Overflow or respective owner