> -----Original Message----- > From: katia goforth [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 09, 2002 12:16 AM > To: [EMAIL PROTECTED] > Subject: email word attachment from html form input > > ... > Name "main::tsr_addy" used only once: possible typo at > ipjustify.pl line > 18. > ... > here is line 18: > $tsr_addy = $form{'tsr_addy'};
Here you are creating the variable $tsr_addy; > ... > To =>'$eu_addy', > Bcc =>'$tsr_addy', Here it looks like you mean to be using the value of $tsr_addy, but you aren't, since variables aren't expanded inside single quotes. That's why you're getting the warning about line 18. Just need to remove the single quotes here. To => $eu_addy, Bcc => $tsr_addy, HTH -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]