Hello Friends,

I have an application that sends e-mail messages in VB, i need to send to input a picture on background. How I can to do this???

ps: I'm using the Outlook referency.

example:

Dim objOutlook As New Outlook.Application
Dim objOutlookMsg As Outlook.MailItem

Set objOutlookMsg = objOutlook.CreateItem(olMailItem)

With objOutlookMsg
.To = Rst![e-mail]
.Subject = "Hello"
?????
.Importance = olImportanceHigh
.Send
end whit


Thank's