in reply to sendmail AND color

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re^2: sendmail AND color
by perrin (Chancellor) on Aug 24, 2006 at 04:09 UTC
    And yet, you have no choice.
      Other options that come to my mind besides HTML, are RTF (mime-type: application/rtf), or SVG? (mime-type: image/svg+xml).

      I'd advice the OP to learn something about how to send MIME email, pick a mime-type that supports colored text and use a module like MIME::Lite to send off the colored-text containing message.

        I can't iamgine that someone who objects to HTML e-mail is going to be happy with RTF or SVG. I admit though, it was a flippant answer and not very helpful.
        use Term::ANSIColor; print color("red"), "Stop!\n", color("reset"); print color("green"), "Go!\n", color("reset");