Results 1 to 3 of 3

Thread: Send e-mail with image background

  1. #1
    ericka
    Guest

    Exclamation Send e-mail with image background

    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

  2. #2
    Fanatic Member
    Join Date
    Sep 2000
    Location
    UK.
    Posts
    728

    Info.

    Im no expert in the Outlook Obj library, but can't you just send the HTML that would be displayed in the email body, something like this?
    VB Code:
    1. <html>
    2. <body background="my_filename">
    3. </body>
    4. </html>

    Hope this helps.
    Laterz
    Digital-X-Treme
    Contact me on MSN Messenger: [email protected]

    [VBCODE]Debug.Print Round(((1097) - ((55 ^ 5 + 311 ^ 3 - 11 ^ 3) _
    / (68 ^ 5))) ^ (1 / 7), 13)[/VBCODE]

  3. #3
    ericka
    Guest
    But, if I use this commands, the image doen't incorporate on message.
    The image appear only if the destinatary has the file on his machine.

    I need send the message with the incorporate image!


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width