in reply to Re: sending email with plaintext and HTML
in thread sending email with plaintext and HTML
And to have the actual text indented, you'd have to so some search/replace:print << ' END'; Text goes here... END
my $text; ($text = <<' END') =~ s/^\s+//gm; Indented text END
Arjen
|
|---|