Re: options for the checkbox...?

2001-09-10 Thread Helen Dickey
I used my $IA = param('IA'); $IA = "(no answer)" if(/$IA/) eq (//); so the words (no answer) came up for a blank IA Helen "Simon K. Chan" wrote: > Hi Everyone, > > Let's say I have this snippet of code for a checkbox: > > > > $name = param('bill'); > > If the box is checked, $name will have

SMTP

2001-08-20 Thread Helen Dickey
The top of my e-mailed web page has From - Thu Aug 16 07:28:43 2001 Received: from freya.domainnameservers.net (freya.domainnameservers.net [208.165.79.5]) by mail.his.com (8.9.3/8.9.3) with ESMTP id HAA19218 for ; Thu, 16 Aug 2001 07:25:01 -0400 (EDT) on it. This looks

SMTP

2001-08-19 Thread Helen Dickey
I made a form. I made a perl program to take results and e-mail pretty html page to my friend Kathy. I don't know how to put who the form was from. I don't know the sender. E-mail message leaves a blank. Helen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

SMTP

2001-08-18 Thread Helen Dickey
How do you get the From: to show who sent? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SMTP e-mail attachment?

2001-08-01 Thread Helen Dickey
I wrote a html form. I wrote a perl script to 1)take the responses and put them into a pretty html page that the user sees on his/her web browser after submitting and 2)send the same pretty page to my friend Kathy. 1)works 2)sends the HTML code for the pretty page as the e-mail message. I would li

Re: e-mailing HTML form results

2001-07-27 Thread Helen Dickey
I do not have the statement $SMTP->mail($ENV{USER}; because I do not know how to define the scalar $ENV{USER} could that be the problem? Helen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

more Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey
the first lines of the log said 220 herndon1.his.com ESMTP Sendmail 8.9.3/8.9.3; Thu, 26 Jul 2001 18:30:05 -0400 (EDT) Net::SMTP=GLOB(0x82286d0)>>> EHLO freya.domainnameservers.net Net::SMTP=GLOB(0x82286d0)<<< 250-herndon1.his.com Hello freya.domainnameservers.net [208.165.79.5], pleased to mee

Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey
Hi all, My server contact wrote: We suggest that you use your ISP (RCN?) as the smtp server since that is the most reliable. We have one available but does run into a lot of problems. Your smtp server name is summitrelocation.com. If that doesn't work I would suggest that you use your ISP to se

Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey
>Debug => 1); > ... > > Then you can check out the log to see what's going on. More than likely, > the server you're trying to use is denying your request. To keep your code > from 'dying', surround the rest of your co

Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey
#x27;re trying to use is denying your request. To keep your code > from 'dying', surround the rest of your code with an if clause: > > if ($msHandle) { > # do the rest of the processing > } > > Jason > > - Original Message - > From: &qu

Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey
#x27;, surround the rest of your code with an if clause: > > if ($msHandle) { > # do the rest of the processing > } > > Jason > > - Original Message - > From: "Helen Dickey" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wedne

re: e-mailing HTML form results

2001-07-25 Thread Helen Dickey
Now I am getting the error message Can't call method "recipient" on an undefined value at feedback1SMTP.pl line 77. Does this mean that my address as recipient is wrong? Helen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: e-mailing HTML form results

2001-07-23 Thread Helen Dickey
When we first got the Web site, the initial instrutions said Your SMTP server is your ISP's SMTP server (Erols, Shentel.net or whatever). (I have also e-mailed her hosting provider contact to ask.) "Bradley M. Handy" wrote: > > -Original Message- > > From:

RE: e-mailing HTML form results

2001-07-23 Thread Helen Dickey
I finished correcting the errors which gave software and comp. error messages. Now I get the pretty page back on my web browser, but it does not send E-mail to me. The two lines that I think might have the problem are: $smtp = Net::SMTP->new("summitrelocation.com"); $smtp->to("helend\@his.com");

RE: e-mailing HTML form results

2001-07-20 Thread Helen Dickey
Thank you so far. I now get "(myfile).pl has too many errors." when I try my perl script. Is there any debugging tool for perl scripts? Helen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: e-mailing HTML form results

2001-07-18 Thread Helen Dickey
Hi again, Can the line $smtp->to('[EMAIL PROTECTED]"); be $smtp->to('[EMAIL PROTECTED],STDOUT"); ? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: e-mailing HTML form results

2001-07-18 Thread Helen Dickey
Dear Floptop or Bradley or whoever, Thank you for your help so far. I have several lines to datasend. Do I have to put them all in a string $smtp->datasend("\n"); $smtp->datasend("whatever1whatever2whatever3\n"); $smtp->dataend(); $smtp->quit; Or may I $smtp->datasend("\n"); $smtp->datasend(

re: e-mailing HTML form results

2001-07-17 Thread Helen Dickey
Dear Floptop or Bradley or whoever, I am brand new at this. I looked up Net::SMPT and found an example. For a test I filled in the blanks with what I thought should go in. Is this correct? Should the following work? #!/usr/local/bin/perl -wT use Net::SMTP; $smpt = Net::SMPT->new('smtp.his.com

e-mailin HTML of form results

2001-07-16 Thread Helen Dickey
Hi, I wrote an HTML form. I wrote a perl script to read the form input and print the results on a pretty HTML table. I get the results fine and prety on my screen when I submit but I want to know how to send the resulting HTML page that I see to an e-mail address. Helen -- To unsubscribe, e-ma