Build your HTML strings and pass the image value as a variable to the Html
page
eg
Varimage = Request.form("image")
strHTML = "<html>"
strHTML = strHTML & "<HEAD>"
strHTML = strHTML & "<TITLE></TITLE>"
strHTML = strHTML & "</HEAD>"
strHTML = strHTML & "<BODY>"
strHTML = strHTML & "<IMG SRC = "
strHTML = strHTML & varimage
strHTML = strHTML & ">"
strHTML = strHTML & "</BODY>"
strHTML = strHTML & "</HTML>"
This is assuming your varimage is a physical path
Good Luck!
> From sree ramulu [SMTP:sreeramulu@o...]
>
> Hi,
>
> I want to display selected image in the body of matter while
sending
> e-mail through CDONTS object. Suggest me how to do it. Please try to
> send me the related code.
>
> Thanking you.
>
> Sreeramulu