>
> 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
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
>
> 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
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
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
>
>
> 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
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
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
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
>
> 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
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
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
>
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
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]',
--- 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
--- [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-
16 matches
Mail list logo