Mike Williams wrote:
On Thu, Apr 10, 2008 at 12:41 AM, Perl CGI script enhancer <
[EMAIL PROTECTED]> wrote:
my $email = populateEmail("test");
print $email;
Well, I didn't see it at first, so I cut and pasted a snippet of your code
into a local file, ran it at the command line and got:
Und
On Thu, Apr 10, 2008 at 12:41 AM, Perl CGI script enhancer <
[EMAIL PROTECTED]> wrote:
> my $email = populateEmail("test");
> print $email;
>
> When i a using the above code it results in "No recipient address
> found in header" and when i replace ${email} with "[EMAIL PROTECTED]"
> ie
>
> To : [E
B. Fongo wrote:
It's my first time to use sendmail. I want to my script to send a mail
to [EMAIL PROTECTED] or whoever is in the To: line. The script warns:"No
recipient name found in the header" and dies, even though there's a
recipient. I'm puzzled.
###
#
cc.ro/
Mail: [EMAIL PROTECTED]
- Original Message -
From: "Wiggins d'Anconia" <[EMAIL PROTECTED]>
To: "Octavian Rasnita" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, August 28, 2002 5:51 AM
Subject: Re: sendmail command line (without queu
On Tue, 27 Aug 2002 at 22:51, Wiggins d'Anconia opined:
[cur-snippity]
Wd:http://search.cpan.org/search?mode=all&query=sendmail
Wd:
Wd:Remember to throw comments back to the list as well, I would love to
Wd:hear what others think, does anyone disagree, should we cast aside the
Wd:module and go
IL PROTECTED]>
> To: "Anthony E." <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Wednesday, August 28, 2002 1:38 AM
> Subject: Re: sendmail command line (without queuing)
>
>
>
>>man sendmail??? (or possibly try a sendmail group)
>>
man sendmail??? (or possibly try a sendmail group)
You might be looking for "DeliveryMode=x" where x is "b" but I am not a
sendmail expert.
You might also check the perldoc for Net::SMTP as this is probably safer
than using sendmail command line (or one of the many other SMTP modules).
http:
Sendmail for Windows
http://www.indigostar.com/sendmail.htm
- Original Message -
From: "Scot Robnett" <[EMAIL PROTECTED]>
To: "Octavian Rasnita" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, March 21, 2002 9:02 PM
Subject: RE: sendmail
BLAT for SMTP.
Getmail for POP3.
http://www.interlog.com/~tcharron/blat.html
Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]
-Original Message-
From: Octavian Rasnita [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 21, 2002 7:18 AM
To: [EMAIL PROTECTED]
Subject: s
If you want the format to be text/plain, then it is not possible.
Why not just link to a redirect script?
Scott Lutz
Pacific Online Support
Phone: 604.638.6010
Fax: 604.638.6020
Toll Free: 1.877.503.9870
http://www.paconline.net
-Original Message-
From: Rahul Garg [mailto:[EMAIL PROTE
> use Mail:Sendmail;
Try
use Mail::Sendmail; # Two ::, not one
-Akshay
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On Dec 13, Lance Prais said:
>use Mail:Sendmail;
use Mail::Sendmail;
Notice the doubled colon.
>%mail = ( To =>'[EMAIL PROTECTED]',
>From=> 'Nobody',
>Subject => 'Error',
>Message => "my $data = for (1..21)"
> );
I don't think M
Hi Lance:
use Mail:Sendmail;
should be
use Mail::Sendmail;
Have a good day,
Francis
Lance Prais wrote:
> I am using the following piece of code to send email I can not figure out
> why it errors out because it worked the other day and now it is not. I have
> not changed anything on the syst
At 01:48 PM 9/6/2001 -0700, Curtis Poe wrote:
>--- randy Peterman <[EMAIL PROTECTED]> wrote:
> > >I have to ask: where are you getting the $UserName value? What you are
> > trying to do raises some
> > >serious security issues if done incorrectly.
> >
> > I am getting it from a form input.
>
>R
--- randy Peterman <[EMAIL PROTECTED]> wrote:
> >I have to ask: where are you getting the $UserName value? What you are
> trying to do raises some
> >serious security issues if done incorrectly.
>
> I am getting it from a form input.
Randy,
The problem with that is untainting an email addre
>I have to ask: where are you getting the $UserName value? What you are
trying to do raises some
>serious security issues if done incorrectly.
I am getting it from a form input. I am hard coding the "to" line so that I
do not have to worry about spammers just using my page as a portal. Also
t
--- randy Peterman <[EMAIL PROTECTED]> wrote:
> I am trying to develop a page to allow people on a list that I am a member
> of to subscribe and unsubscribe by clicking a link. The link spawns a
> window that allows the user to type in their email address. When they do
> that they can submit the
> -Original Message-
> From: Wendy DeCora [mailto:[EMAIL PROTECTED]]
> Sent: 23 August 2001 16:13
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: sendmail and newlines
>
>
> Situation: My perl script (see Code: below) is being
> handed a flatfile (see File: below) generated from
Thanks Brett. I'll try that.
Adam Carson
MIS Department
Berkeley County, SC
>>> "Brett W. McCoy" <[EMAIL PROTECTED]> 07/30/01 05:19PM >>>
On Mon, 30 Jul 2001, Adam Carson wrote:
> If you are suggesti
HELO, EHLO need the domain you are connecting from
kat@graf-spee:~$ telnet localhost smtp
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 graf-spee.hn.extremix.net ESMTP Sendmail 8.11.3/8.11.3; Tue, 31 Jul 2001 08:17:58
+0530
helo
501 5.0.0 helo requires domain address
On Mon, 30 Jul 2001, Adam Carson wrote:
> If you are suggesting that I use Mail::sendmail instead (are you?),
> the reason is that I got this code from Novell's website and it seemed
> to be a useful and easy to understand piece of code. As a perl
> beginner, I also thought that understanding th
Yes, I am.
If you are suggesting that I use Mail::sendmail instead (are you?), the reason is that
I got this code from Novell's website and it seemed to be a useful and easy to
understand piece of code. As a perl beginner, I also thought that understanding the
process might be useful in the fu
On Mon, 30 Jul 2001, Adam Carson wrote:
> I have been trying to get a version of sendmail to send results from a
> form, and after finally getting all my addresses and formatting right,
> my mailserver gives me an error about not using the HELO protocol:
>
> X-Authentication-Warning: mail.server.
23 matches
Mail list logo