From linux, I send this file to an outlook account...
<html>
<h2>HELLO</h2>
</html>
It appears just as you see, plain text.
How can I get this to display on Outlook as it appears when I run it through firefox on liunux ?
In linux, I sent it as plain test using a system call in a perl script....
mail -s 'the title' 'recipient' < the_file.html.
'which mail' eventually ends up being mailx
The thinking is that outlook would recognize the "html" (between the < and > which won't display here) as line 1 and do the right thing.