On Mon, 25 Aug 2003 23:51:47 +0000, Pablo Fischer wrote: 
>           my $sender = new Mail::Sender ({
>               smtp => "$this->{SERVER_IP}",
>               from => "pablin <[EMAIL PROTECTED]>",
>               to => "$nombre <$correo>",
>               subject => "$this->{MENSAJE_TITULO}",
>               debug => "errores3.txt",
>           }) or die("chale");
Hello Pablo,

        I have so no idea what is wrong with your example... but you have an extra 
pair of paranthesis around the hash ref that you use for the object initialization 
that isn't shown in any of the examples of the Mail::Sender documentation.

        Please give the following a try:

my $sender = new Mail::Sender {
        smtp => "$this->{SERVER_IP}",
        from => "pablin <[EMAIL PROTECTED]>",
        to => "$nombre <$correo>",
        subject => "$this->{MENSAJE_TITULO}",
        debug => "errores3.txt",
} or die "chale";

thanks
/oliver/


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to