#!/usr/bin/perl
use CGI;
use CGI::Carp qw(fatalsToBrowser);
use Text::Format;
my $q = new CGI;
print $q->header();
my $body = "
Hi Lara,
The Email Issue (matter getting shattering/ numbers coming in between etc..) was addressed to Joseph and he is looking into this with highest priority. This will be fixed ASAP.
Thanks,
Scott Valentine
DS - Manager (Mktng)
Xxxxxxxx Software Solutions, Inc.
XXXXXXXXXXX Medical Transcription Services
XXXX Martins Rd.
Xxxxxxxx, AZ XXXXX
Phone: XXX-XXX-XXXX
www.xxxxxxxxxxx.com
";
$body = Text::Format->new({columns => 70,firstIndent => 0})->format($body);
print $body;