It won't work for me via browser, so I "cheated" and got rid of Text::Format and did the HTML manually: #!/usr/bin/perl
use strict;
use warnings;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
my $q = new CGI;
print $q->header();
my $body = "Hi Lara,<br>
The Email Issue (matter getting shattering/ numbers coming in between<
+br>
etc..) was addressed to Joseph and he is looking into this with highes
+t<br>
priority. This will be fixed ASAP.<br>Thanks,<br>
<br>
Scott Valentine<br>DS - Manager (Mktng)<br>Xxxxxxxx Software Solutions
+, Inc.<br>XXXXXXXXXXX Medical Transcription Services<br>XXXX Martins
+Rd.<br>Xxxxxxxx, AZ XXXXX<br>Phone: XXX-XXX-XXXX<br>www.xxxxxxxxxxx.c
+om<br/>";
print $body;
|