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:
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
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