1

Solaris Korn Shell

I am writing sql reports to an oracle database, spooling them to a file and emailing them with mailx. I use the syntax below. The reports do not format properly, unless I use the Courier New font. How do I set this with mailx?

mailx -s "MY REPORT, date +'%D %r " -r "REPORTING SYSTEM" me@me.com< /mydir/mysql.log > /dev/null

Bob
  • 412
  • 5
  • 9

1 Answers1

4

There isn't a font in plain text email (which mailx is sending). You need to configure your client software to use the right font.

Bill Weiss
  • 10,782
  • 3
  • 37
  • 65