in reply to Re: Getting rid of first space?
in thread Getting rid of first space?

This line took the empty spaces out:

print MAIL join('', @messagebody);

but if the text file looks like this:

one. two. three, four.
It comes out looking like this:
one. two. three, four.