Sonika Sachdeva wrote:
What is the correct method to authenticate for sending mails , I found
auth(). But its not working...
Try
Mail::Sender::Easy
It handles SMTP authentication quite nicely :)
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTE
What is the correct method to authenticate for sending mails , I found
auth(). But its not working...
On Thu, 16 Sep 2004, Anish Kumar K. wrote:
> This is the complete program
>
> use warnings;
> use strict;
> use Net::SMTP;
> my $ServerName = "*.com";
> # Connect to the server
> my $smtp = Net::SMTP->new($ServerName);
> die "Couldn't connect to server" unless $smtp;
Ok, now that we've v
From: "Anish Kumar K." <[EMAIL PROTECTED]>
> When I type telnet *.com 25
> I get like this
>
> 220 .com ESMTP Postfix
> 500 Error: bad syntax
> 500 Error: bad syntax
> 500 Error: bad syntax
> 500 Error: bad syntax
>
> The Program which I sent you work when
> On Thu, 16 Sep 2004, Anish Kumar K. wrote:
>
> > When I type telnet *.com 25
> > I get like this
> >
> > 220 .com ESMTP Postfix
> > 500 Error: bad syntax
>
> That's okay -- it at least confirms that you have access to a working
> SMTP server, and should be able to
server -- correct ?
> So my question is whether I need to install SMTP module for windows.
> if so where will I get...
That's certainly an option, as Jenda noted, but if you have access to a
working SMTP server then there's really not much reason to do so.
--
Chris Devers
--
From: "Anish Kumar K." <[EMAIL PROTECTED]>
> The SMTP Pgms are not working on my windows environment. I am using
> Active PERL 5.8.
>
> please let me know whether I need to install SMTP module, if so where
> I can find the module for windows.
You can install all
work in the ACTIVE PERL on windows..
So my question is whether I need to install SMTP module for windows. if so
where will I get...
- Original Message -
From: "Chris Devers" <[EMAIL PROTECTED]>
To: "Anish Kumar K." <[EMAIL PROTECTED]>
Cc: "beg
On Thu, 16 Sep 2004, Anish Kumar K. wrote:
> This is the complete program
>
> use warnings;
> use strict;
> use Net::SMTP;
> my $ServerName = "*.com";
> # Connect to the server
> my $smtp = Net::SMTP->new($ServerName);
> die "Couldn't connect to server" unless $smtp;
>
>
> Error Message
server at smtp.pl line 7.
Thanks
Anish
- Original Message -
From: "Chris Devers" <[EMAIL PROTECTED]>
To: "Anish Kumar K." <[EMAIL PROTECTED]>
Cc: "beginners perl" <[EMAIL PROTECTED]>
Sent: Thursday, September 16, 2004 6:16 PM
Subject: Re: SMT
On Thu, 16 Sep 2004, Anish Kumar K. wrote:
> The SMTP [programs] are not working on my windows environment. I am
> using Active [Perl] 5.8.
>
> please let me know whether I need to install SMTP module, if
> so where I can find the module for windows.
>
> Do I need to
The SMTP Pgms are not working on my windows environment. I am using Active PERL 5.8.
please let me know whether I need to install SMTP module, if so where I can find the
module for windows.
Do I need to have SMTP server also..
Anish
Firstly, the mail method allows you to set the MAIL FROM: line in the
SMTP dialogue, which allows you to tell the remote mailer who is sending
the mail.
The additional options which can be passed in are (ripped from perldoc
Net::SMTP)
Size=>
Return =>
Hi all,
In the script below what does the mail parameter represent. What would be a
valid param.
sub email(){
my @contact;
$contact[0]={name=>'WB',email=>'[EMAIL PROTECTED]'};
$contact[1]={name=>PE,email=>'[EMAIL PROTECTED]'};
my $data;
$data ="To: Primary Contact";
print"Sending mail to: $
14 matches
Mail list logo