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:
which will read in all of the lines from the file and concatenate them into one string.$newline = join("",<PAGE>);
In any case, printing out $newline as a debugging aid will probably help you track this problem down without sending a zillion messages.
|
|---|