Hello $FIRST_NAME. I'm writing on behalf of $COMPANY... #### Hello James. I'm writing on behalf of SoftLayer... #### my $outfile = "new.txt"; open (OUTFILE, ">> $outfile") || die "Can't open $outfile\n"; print OUTFILE "\n"; print OUTFILE "Hello $FIRST_NAME.\n"; print OUTFILE "\n"; print OUTFILE "I'm writing on behalf of $COMPANY...";