in reply to Re: Re: Mail::Sender problem
in thread Mail::Sender problem

Since you're using the MailMsg method, you have to fix your newlines beforehand.

$message =~ s{\n}{\012\010}g;

Replies are listed 'Best First'.
Re: Re: Re: Re: Mail::Sender problem
by fuzzysteve (Beadle) on Dec 11, 2001 at 23:15 UTC
    I suspected something like that, though i thought the function would split the message up.

    Thanks for the help