System.Web.Mail

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I build up a string for the body of my email.

I also want to display an image within the email itself(not as a background
image) at any place in the email.

This seems simple but I am unable to do it.

I am using .NET 1.1

Anyone?
 
the simplest way to do this is to send your message in HTML format and
reference images on the Internet. make sure to use the absolute HTTP path
to the image in your IMG tag.

post your code if you need more help
tim
 
Hi,
I build up a string for the body of my email.

I also want to display an image within the email itself(not as a background
image) at any place in the email.

This seems simple but I am unable to do it.

I am using .NET 1.1

Anyone?

I have had *some* luck (there are a lot of e-mail clients out there,
including web-based) with the following:
* add the images as attachment to the message.
* use <img> tags in the message, with the src-attribute pointing to the
filename (no path, no protocol) of the attached image.

Hans Kesting
 

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

Back
Top