Erich Beyrent wrote:
> I am trying to use Net::SMTP::Multipart to send email to multiple
> recipients, and per the module documentation, I am specifying multiple
> addresses in an anonymous array:
>
> $smtp->Header(To => ["[EMAIL PROTECTED]", "[EMAIL PROTECTED],"],
> Subj => "Test
> Dirk Bremer wrote:
> > Note the loop as shown above. What am I doing wrong? Do I
> need to create
> > a new SMTP object for each message?
>
> You have to start each message transaction with the "MAIL FROM" SMTP
> command (i.e. $smtp->mail() ). You do not need to reconnect
> unless the
> se
Dirk Bremer wrote:
Note the loop as shown above. What am I doing wrong? Do I need to create
a new SMTP object for each message?
You have to start each message transaction with the "MAIL FROM" SMTP
command (i.e. $smtp->mail() ). You do not need to reconnect unless the
server kicks you out af
[EMAIL PROTECTED] wrote:
> Bonjour,
>
> I actually use Net::SMTP to send email from my Perl program,
> everything works fine except for the return "\n" character. I don't
> know why but I loose my \n in my email message...
>
> Does anybody ever saw that?!?
>
> # I use this line to c
Hello Dominic,
the "Mail" and SMTP ++ RFCs (?821 and ?822 at first guess) are forcing you to
use "CR"+"LF" explicitly
Simply use \015\012 as line delimiter.
HTH
Kris
[EMAIL PROTECTED] wrote (Wed, 30 Mar 2005 10:43:59 -0500):
> This message is in MIME format. Since your mail reader does
bes
Cc: [EMAIL PROTECTED]
Subject: Re: Net::SMTP
Raymond Forbes wrote:
> I get the exact same error message. I am guessing my perl install is
> fluxored up or I have some configuration off.
Did you fix mailhost and from ?
Try it with debug - see below.
> -Original Message-
&
TED]
> Sent: Thursday, June 10, 2004 4:40 PM
> To: Raymond Forbes
> Cc: [EMAIL PROTECTED]
> Subject: Re: Net::SMTP
>
> Raymond Forbes wrote:
>
>
>>Ok, dumb question. I am using Perl 5.8 and I am using the latest Visual
>>Perl. I am trying to do a very basic Net
I get the exact same error message. I am guessing my perl install is
fluxored up or I have some configuration off.
-Original Message-
From: $Bill Luebkert [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 10, 2004 4:40 PM
To: Raymond Forbes
Cc: [EMAIL PROTECTED]
Subject: Re: Net::SMTP
Raymond Forbes wrote:
> Ok, dumb question. I am using Perl 5.8 and I am using the latest Visual
> Perl. I am trying to do a very basic Net::SMTP script and it is failing
> with “bad file descriptor”. I am sure I am missing something obvious I
> just can’t see it! My code below.
Try:
use stri
Hello,
Try:
perldoc NET::SMTP
Good Luck,
Christopher
> -Original Message-
> From: Redd Liao [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 04, 2001 7:17 AM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Re: Net::SMTP
>
>
> >
If memory serves, NET::SMTP is part of the libnet package.
---
Charles E. Pelkey
C.P. Designs: http://cpdesigns.homeip.net/ [EMAIL PROTECTED]
Personal Site: http://cpelkey.homeip.net/ [EMAIL PROTECTED]
Flynn, Timothy J wrote:
> Is there another smtp->command that I should be using to
> protect against this action, should I filter the ":", or
> should I use a different mail sending module.
You should terminate the header properly.
> for ($i = 0; $i < scalar(@EMAIL_LIST);$i++){
> $smtp = Net:
12 matches
Mail list logo