Hi,
I'm trying to use the email intent with an html page which has server side images and one attachment. The HTML looks like this:
<!DOCTYPE html>
<html>
<body>
<img src="<imglink>" alt="Product">
</body>
</html>
and the code:
Dim e As Email
e.Subject = "Test"
e.Body = html
e.Attachments.Initialize
e.Attachments.Add(File.DirRootExternal & "/pictures/QRcode.png")
'start html email
StartActivity(e.GetHtmlIntent)
The attachment works but my img src stuff in the html not. When I start the intent I see "obj" in the message while i'm pointing to server side images in the html. Any suggestions?
I'm replacing the <imglink> with my server image URL's.