Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stationery Banner from VBA

Status
Not open for further replies.

EriRobert

MIS
May 9, 2003
114
GB
Hello everyone

I'm new to this forum so bear with me.

I'm using Outlook Express and am sucessfully sending plain text emails dynamically from Access via VBA, using code:
Code:
    strAddedtext = "&Subject=" & strSubject
    strAddedtext = strAddedtext & "&Body=" & strBody
    If Len(strAddedtext) <> 0 Then
        Mid$(strAddedtext, 1, 1) = "?"
    End If
    strtext = "mailto:" & me.txtEmail & strAddedtext
    If Len(strtext) Then
        fHandleFile strtext, vbNormalFocus
    End If

Which all works fine. However there is now a requirement to include the company logo on the outgoing email. This is what I'm stuggling with. I've tried Outlook Express' Stationery option, but the mailto: ignores it. I've tried including the logo (HTML code) in the body of the email, but the email come out with the tags and things (HTML code) rather than the actual logo.

I'm stuck - any ideas

Thanks

Robert

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top