|
Subject:
|
Send by email
|
|
Posted By:
|
tsimsha
|
Post Date:
|
9/30/2005 9:46:57 PM
|
Hello,
I am generating a report(Purchase Order). In this report, i have some sample images which are stored in "../images/img1.jpg". That is my images location. I am generating report dynamically and store in a variable(strTable).
I am sending that by email using CDO cdo.body=strTable ...
In my system its showing images. In the email, its not showing images. What could be the problem. How can i make images to show in the email also?
Thanx in advance
|
|
Reply By:
|
jacob
|
Reply Date:
|
10/1/2005 3:03:20 AM
|
Well, my guess would be that it is because you specify a relative path on the web server, and the local copy of the page which you are sending can therefore not find this image.
The email client at the reciever is not a browser; it is an email viewer.
Try specifying the image as an URL instead.
Hope it helps, Jacob.
|