jayadev65
2008-06-14 10:31:23 UTC
Hi,
Need to send HTML file thru Blat to many clients, the HTML has been
created using MS-word 2000 (using save as html). The email is
properly sent, but the images within the html are not displayed to
the receipent.
Following is the code used to send the email:
function send_mail(cEmailAddress)
sendemail("blat ",;
" importedintro.html"+;
" -to "+cEmailAddress+;
" -server smtp.abc.com"+;
" -u ***@abc.com -pw 123445"+;
" -SuperDebugT"+;
" -log blat.log -overwritelog"+;
" -mime "+;
" -html"+;
" -subject Availability.")
return NIL
function sendemail(sProgram,sCommandLine)
run (sProgram+" "+sCommandLine)
reportfile("blat.log")
msg("Mail Sent");wait
return NIL
I have even tried -embed image1.jpg within the above code though the
specific location of the image files are mentioned within the HTML
itself. still no sucess. Where am I wrong.
Any help is appreciated.
Warm regards,
Jayadev.
Need to send HTML file thru Blat to many clients, the HTML has been
created using MS-word 2000 (using save as html). The email is
properly sent, but the images within the html are not displayed to
the receipent.
Following is the code used to send the email:
function send_mail(cEmailAddress)
sendemail("blat ",;
" importedintro.html"+;
" -to "+cEmailAddress+;
" -server smtp.abc.com"+;
" -u ***@abc.com -pw 123445"+;
" -SuperDebugT"+;
" -log blat.log -overwritelog"+;
" -mime "+;
" -html"+;
" -subject Availability.")
return NIL
function sendemail(sProgram,sCommandLine)
run (sProgram+" "+sCommandLine)
reportfile("blat.log")
msg("Mail Sent");wait
return NIL
I have even tried -embed image1.jpg within the above code though the
specific location of the image files are mentioned within the HTML
itself. still no sucess. Where am I wrong.
Any help is appreciated.
Warm regards,
Jayadev.