B
Bernie Yaeger
The following code works fine:
Dim sr As StreamReader = New StreamReader("c:\htdogpro\bhome.htm")
htmstring = sr.ReadToEnd()
msg.Body = htmstring
msg.BodyFormat = MailFormat.Html ' as opposed to mailformat.text
However, if the htm file has images, they do not go along with the text
stream. How can I include the images that the htm file uses?
Thanks for any help.
Bernie Yaeger
Dim sr As StreamReader = New StreamReader("c:\htdogpro\bhome.htm")
htmstring = sr.ReadToEnd()
msg.Body = htmstring
msg.BodyFormat = MailFormat.Html ' as opposed to mailformat.text
However, if the htm file has images, they do not go along with the text
stream. How can I include the images that the htm file uses?
Thanks for any help.
Bernie Yaeger