Re: email word attachment from html form input

2002-01-09 Thread Steve Maroney
I used MIME::lite once and had some problems with the variables. I looked at some of my code and tried to remeber what I did wrong. I noticed I do not have the variables qutoed when inputing them to the MIME::;lite module. Try removing your quotes and let me know if that works. Steve On Wed, 9

RE: email word attachment from html form input

2002-01-09 Thread Bob Showalter
> -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. > ..

Re: email word attachment from html form input

2002-01-08 Thread katia goforth
Gary, Thanks for the reply. Even after changing it to use the CGI module i still had a problem but i finally figured that out. I had to hard code using libraries { use lib "/usr/local/lib/perl5/site_perl/5.6.1"; use lib "/usr/local/lib/perl5/site_perl/5.6.1/i686-linux"; } (sounds like i have a

RE: email word attachment from html form input

2002-01-08 Thread Gary Hawkins
Recommend replacing the parsing routine, mainly because it is said to have a bunch of security holes: read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); @pairs=split(/&/, $buffer); foreach $pair (@pairs) { ($name, $value)=split(/=/,$pair);