in reply to Re: Re: NET::SMTP
in thread Not hard-code text with NET::SMTP ?

If you're sure that's the only line in the file, a simpler and perhaps less error-prone method is to use:

$newline = join("",<PAGE>);
which will read in all of the lines from the file and concatenate them into one string.

In any case, printing out $newline as a debugging aid will probably help you track this problem down without sending a zillion messages.