Re: Net::SMTP::Multipart and multiple recipients

2006-03-01 Thread $Bill Luebkert
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

RE: Net::SMTP Question

2006-02-03 Thread Dirk Bremer
> 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

Re: Net::SMTP Question

2006-02-03 Thread DZ-Jay
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

Re: Net::SMTP

2005-03-30 Thread $Bill Luebkert
[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

Re: Net::SMTP

2005-03-30 Thread Kris Hoelzer
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

RE: Net::SMTP

2004-06-10 Thread Raymond Forbes
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- &

Re: Net::SMTP

2004-06-10 Thread $Bill Luebkert
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

RE: Net::SMTP

2004-06-10 Thread Raymond Forbes
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

Re: Net::SMTP

2004-06-10 Thread $Bill Luebkert
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

RE: Net::SMTP

2001-06-04 Thread Christopher Hahn
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 > > > >

Re: Net::SMTP

2001-04-27 Thread Charles Pelkey
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]

Re: Net::SMTP

2000-12-07 Thread Philip Newton
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: