This code works fine:
ods _all_ close;
ods html path='/Somewhere' style=sasweb file='Test.html';
ods html text='<div align="center">
Hello World.
</div>';
/*Lots of SAS code*/
ods html close;
ods listing;
It creates Test.html plus the images on our server. Unfortunately our server is locked down (miss-configured?) so I cannot copy the html file plus pictures via SAS EG. I can use the Export option but that only exports the html to the local machine. Any idea of how to get the images via SAS EG?