Why?
The idea is to send a self contained piece of information to the client
which is not dependent on anything outside of the email.
It's actually better than storing the images on your server, since now,
downloadable content in emails is pretty much nixed by any respectable email
client (in order to prevent spam emails from verifying email addresses).
Also, from the mail admin's point of view, it's an extra piece of
information flying through the system. I don't see why they should care
that much (if they are on the receiving end).
--
- Nicholas Paldino [.NET/C# MVP]
-
mv*@spam.guard.caspershouse.com
"carion1" <dd******@gmail.com> wrote in message
news:O%***************@TK2MSFTNGP10.phx.gbl...
Mail server admins around the world love this! Embedding images in the
message is an option but IMO it is a bad one.
--
Derek Davis
dd******@gmail.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote
in message news:%2****************@TK2MSFTNGP10.phx.gbl... While that certainly is an option, it's a problem, since you will have
to host those images. It would be easier to just embed the images in the
email itself.
This article shows how to do that. It will have to be tweaked for
however he is sending the email, but it should give the basic idea.
http://www.codeproject.com/csharp/EmbedEmailImages.asp
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"carion1" <dd******@gmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl... Place the images on a web server and then...
<img
src="http://www.whateverdomainyouuse.com/some_directory/some_image.jpg"
border="0">
--
Derek Davis
dd******@gmail.com
"Das" <Da*@discussions.microsoft.com> wrote in message
news:18**********************************@microsof t.com...
Hi,
I'm trying to email html page & that page also contains the images. I
can
do that when we send html page from ms outlook. But I want to attach
page c#
code & send the mail through smtp mail.
Thanx in advance..
Regards,
das