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 like the sender could be figured out.  (by
mail.his.com (8.9.3/8.9.3) with ESMTP id HAA19218 looks like an address
of sorts to me a beginner) without asking the sender to input his/her
name (the fill-in form takes up a whole printed page and we did not want
it to get bigger for presentation to companies)

I do not have any code to show you for this part since I do not know
what to put.  Maybe it can not be done.  Can it?
Helen



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: [EMAIL PROTECTED]




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 like the HTML code to be sent as an attachment so she can easily
save and view the page in her web browser.
Helen


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




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]




Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey

It looks like my local host connects---i get:
  EHLO 209.67.207.3
Net::SMTP=GLOB(0x82284f0) 250-freya.domainnameservers.net Hello localhost
[127.0.0.1], pleased to meet you
But I want the SMTP to connect to the place where my HTML page is so it can be
mailed.  I keep getting the same error message:
Can't call method to on an undefined value at feedback1SMTP.pl line 85.
I see no connection to the server of the HTML page.
The original instrutions, when we got the server, said:


Jason Purdy wrote:

 I had this earlier this morning - this means the Net::SMTP object wasn't
 created.

 In my code, I redirected STDERR and created the object using Debug=1 to get
 more information.

 open (STDERR, /logs/mail_log);
 $msHandle = Net::SMTP-new ('localhost',
Hello = '64.70.149.84',
Timeout = 10,
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 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: Wednesday, July 25, 2001 4:14 PM
 Subject: re: e-mailing HTML form results

  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]
 

Jason Purdy wrote:

 I had this earlier this morning - this means the Net::SMTP object wasn't
 created.

 In my code, I redirected STDERR and created the object using Debug=1 to get
 more information.

 open (STDERR, /logs/mail_log);
 $msHandle = Net::SMTP-new ('localhost',
Hello = '64.70.149.84',
Timeout = 10,
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 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: Wednesday, July 25, 2001 4:14 PM
 Subject: re: e-mailing HTML form results

  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]
 


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




Re: e-mailing HTML form results

2001-07-26 Thread Helen Dickey

It looks like my local host connects---i get:
  EHLO 209.67.207.3
Net::SMTP=GLOB(0x82284f0) 250-freya.domainnameservers.net Hello localhost
[127.0.0.1], pleased to meet you
But I want the SMTP to connect to the place where my HTML page is so it can be
mailed.  I keep getting the same error message:
Can't call method to on an undefined value at feedback1SMTP.pl line 85.
I see no connection to the server of the HTML page.
The original instrutions, when we got the server, said:
Your SMTP server is your ISP's SMTP server (Erols, Shentel.net or whatever).
Please contact your local dial-up provider for this server name. 
What do I need to do?


Jason Purdy wrote:

 I had this earlier this morning - this means the Net::SMTP object wasn't
 created.

 In my code, I redirected STDERR and created the object using Debug=1 to get
 more information.

 open (STDERR, /logs/mail_log);
 $msHandle = Net::SMTP-new ('localhost',
Hello = '64.70.149.84',
Timeout = 10,
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 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: Wednesday, July 25, 2001 4:14 PM
 Subject: re: e-mailing HTML form results

  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]
 

Jason Purdy wrote:

 I had this earlier this morning - this means the Net::SMTP object wasn't
 created.

 In my code, I redirected STDERR and created the object using Debug=1 to get
 more information.

 open (STDERR, /logs/mail_log);
 $msHandle = Net::SMTP-new ('localhost',
Hello = '64.70.149.84',
Timeout = 10,
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 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: Wednesday, July 25, 2001 4:14 PM
 Subject: re: e-mailing HTML form results

  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]
 


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




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

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);

(I am writing a response form for my friend Kathy who started the
business Summit Relocation and I write her web pages---my first try at
being a webmaster---and she wants the pretty page we get back on the web
browser to be e-mailed  to her (eventually to her---I am having it
e-mailed to me while I test)

Please help.


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




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]