Please tell me how to do this. here is an example of the current part of the script i'm working with. If I paste a small paragraph from note pad in windows it chops at the 1st carriage return. How do I make SDTIN accept the whole paragraph?
print "What will the subject be[]?";
$subject = <STDIN>;
chomp ($subject);
print "paste your message here[]";
$message = <STDIN>;
chomp ($message);
print "$message\n";
open (TEXT,">$b3"
print TEXT "Subject: $subject\n\n";
print TEXT "$message\n";
close (TEXT);
print "What will the subject be[]?";
$subject = <STDIN>;
chomp ($subject);
print "paste your message here[]";
$message = <STDIN>;
chomp ($message);
print "$message\n";
open (TEXT,">$b3"
print TEXT "Subject: $subject\n\n";
print TEXT "$message\n";
close (TEXT);