Re: Mail::Sendmail

2004-06-09 Thread Wiggins d Anconia
> > Hi all! > > I am using Mail::Sendmail module to send e-mails from my perl application but the text of these messages seems to be too much long and when receiving the e-mail the text of the message is not complete. > Do yo know if there are any message size limitation? It this limitation exis

Re: Mail::Sendmail

2004-06-09 Thread mike
On Wed, 2004-06-09 at 10:59 +0200, Miguel Ãngel Morales wrote: > Hi all! > > I am using Mail::Sendmail module to send e-mails from my perl application but the > text of these messages seems to be too much long and when receiving the e-mail the > text of the message is not complete. > Do yo know

RE: Mail::sendmail

2003-02-28 Thread Dan Muey
> > Steve Few wrote: > > Hi guys, > > > > I tried to send this little test script, but my error at my > NT command > > line was, > > > > "cant' locate Mail::Sendmail.pm in @inc (@inc contains d:/perl/lib > > D:/perl/site/lib at sendmail.pl at line 3". Maybe I'm missing a previous thread but

RE: Mail::sendmail

2003-02-27 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Steve Few wrote: > Hi guys, > > I tried to send this little test script, but my error at my NT > command > line was, > > "cant' locate Mail::Sendmail.pm in @inc (@inc contains d:/perl/lib > D:/perl/site/lib at sendmail.pl at line 3". > > The *.pl below is sendmail.pl. > > Any suggestions? I

Re: Mail::Sendmail & attachments

2002-12-15 Thread Jerry Rocteur
From man Mail::Sendmail Look at http://alma.ch/perl/Mail-Sendmail-FAQ.htm for additional info (CGI, examples of sending attachments, HTML mail etc...) Jerry On Sunday, Dec 15, 2002, at 12:31 Europe/Brussels, Adam Stuckey wrote: Hello everyone, Does anyone know of a way to send attach

RE: Mail::Sendmail Module

2002-11-06 Thread Kipp, James
> > > Always try to do things within perl. Using the backticks to > system() the > external cat command will work only if the cat command exists > and is in the > $PATH. Also, it is less efficient as it involves forking > another process and > execing another file. > > While this may not

Re: Mail::Sendmail Module

2002-11-06 Thread Paul Johnson
Gary Stainburn said: > On Tuesday 05 November 2002 5:37 pm, LRMK wrote: >> there is a one problem >> $mail{message}=; only reads the first line of the file >> in the following block; >> >> $oldsep=$/; $/=undef; disable line seperation >> open(FIN,"")||die "cannot open file: $!\n"; >> $mail{me

Re: Mail::Sendmail Module

2002-11-06 Thread Gary Stainburn
On Tuesday 05 November 2002 5:47 pm, Kipp, James wrote: > > Hello everyone, > > > > I'm trying to use the Mail::Sendmail module in a script where I need a > > independent mailer. The problem I'm having is including more > > than one line > > of text in the message body. I'm not really sure how to

Re: Mail::Sendmail Module

2002-11-06 Thread Gary Stainburn
sage - > From: "Gary Stainburn" <[EMAIL PROTECTED]> > To: "Scott, Joshua" <[EMAIL PROTECTED]>; "Beginners Perl" > <[EMAIL PROTECTED]> > Sent: Tuesday, November 05, 2002 11:15 PM > Subject: Re: Mail::Sendmail Module > > > On

RE: Mail::Sendmail Module

2002-11-05 Thread Kipp, James
> > Hello everyone, > > I'm trying to use the Mail::Sendmail module in a script where I need a > independent mailer. The problem I'm having is including more > than one line > of text in the message body. I'm not really sure how to do this. The > package uses a $mail{message} = "blah" var for

Re: Mail::Sendmail Module

2002-11-05 Thread LRMK
file = ; chomp @file; $mail{message}=join("\n",@file); - Original Message - From: "Gary Stainburn" <[EMAIL PROTECTED]> To: "Scott, Joshua" <[EMAIL PROTECTED]>; "Beginners Perl" <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002

Re: Mail::Sendmail Module

2002-11-05 Thread Gary Stainburn
On Tuesday 05 Nov 2002 5:01 pm, Scott, Joshua wrote: > Hello everyone, > > I'm trying to use the Mail::Sendmail module in a script where I need a > independent mailer. The problem I'm having is including more than one line > of text in the message body. I'm not really sure how to do this. The >

RE: Mail::Sendmail Module

2002-11-05 Thread Scott, Joshua
AM To: Scott, Joshua Cc: [EMAIL PROTECTED] Subject: Re: Mail::Sendmail Module combine all the lines using \n characters and store it in the hash variable - Original Message - From: "Scott, Joshua" <[EMAIL PROTECTED]> To: "Beginners Perl" <[EMAIL PROTECTED]> S

Re: Mail::Sendmail

2001-05-11 Thread Gary Stainburn
Here's a script I wrote a while since that I call from ksh scripts. __BEGIN__ #!/usr/bin/perl -w use Mail::Sender; use Getopt::Std; my $sender=new Mail::Sender { from=>'[EMAIL PROTECTED]', reply=>'[EMAIL PROTECTED]',

Re: Mail::Sendmail (attachment addendum)

2001-05-11 Thread Paul
--- Paul <[EMAIL PROTECTED]> wrote: > --- [EMAIL PROTECTED] wrote: > > All, I am looking for a way to send the output of a logfile using > > Mail::Sendmail. Is that possible? If so can some body give me a > > high level syntax. If the previous method isn't sufficient, try a peek at http://alm

Re: Mail::Sendmail

2001-05-11 Thread Paul
--- [EMAIL PROTECTED] wrote: > All, I am looking for a way to send the output of a logfile using > Mail::Sendmail. Is that possible? If so can some body give me a high > level syntax. my $content; open LOG, $log or die $!; { local $/ = undef; $content = ; } close LOG; $mail{Message} = "Pre-