So right now I am sending out emails using a distribution list in excel. I do a:
VB Code:
  1. Set oMessage = CreateObject("CDO.Message")
to create my mail message and because it is an HTML message I do:

oMessage.HTMLBody = [html source]

The Html source I am using was something that was created in an MSOffice AP, probably Word, and then just saved as an HTML file. So I am rote copying the source, but there is one line in there that defines this logo at the top of the page:

VB Code:
and I have no idea what that is suppose to be referring to, but I know it gives me a deadlink. If I use some weblink to a graphics it works, so everything about this email is fine, except for that. Does anybody know what that is, and how I can get that logo back in my email. Thank you.